Struct tensorflow::ops::RequantizeInst
source · pub struct RequantizeInst {
pub op: Operation,
}
Expand description
An instance of ‘Requantize’ Operation with it’s Outputs and Inputs exposed as methods.
Fields§
§op: Operation
An instance of a fully built Requantize Operation in a Tensorflow graph.
Implementations§
source§impl RequantizeInst
impl RequantizeInst
sourcepub fn output_min(&self) -> Output
pub fn output_min(&self) -> Output
Returns the ‘output_min’ Output of this ‘Requantize’ operation.
sourcepub fn output_max(&self) -> Output
pub fn output_max(&self) -> Output
Returns the ‘output_max’ Output of this ‘Requantize’ operation.
sourcepub fn input_min(&self) -> Input<'_>
pub fn input_min(&self) -> Input<'_>
Returns the ‘input_min’ Input of this ‘Requantize’ operation.
sourcepub fn input_max(&self) -> Input<'_>
pub fn input_max(&self) -> Input<'_>
Returns the ‘input_max’ Input of this ‘Requantize’ operation.
sourcepub fn requested_output_min(&self) -> Input<'_>
pub fn requested_output_min(&self) -> Input<'_>
Returns the ‘requested_output_min’ Input of this ‘Requantize’ operation.
sourcepub fn requested_output_max(&self) -> Input<'_>
pub fn requested_output_max(&self) -> Input<'_>
Returns the ‘requested_output_max’ Input of this ‘Requantize’ operation.
Trait Implementations§
source§impl Clone for RequantizeInst
impl Clone for RequantizeInst
source§fn clone(&self) -> RequantizeInst
fn clone(&self) -> RequantizeInst
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for RequantizeInst
impl Debug for RequantizeInst
source§impl From<RequantizeInst> for Operation
impl From<RequantizeInst> for Operation
source§fn from(inst: RequantizeInst) -> Operation
fn from(inst: RequantizeInst) -> Operation
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for RequantizeInst
impl Send for RequantizeInst
impl Sync for RequantizeInst
impl Unpin for RequantizeInst
impl UnwindSafe for RequantizeInst
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more