Struct tensorflow::ops::RestoreInst
source · pub struct RestoreInst {
pub op: Operation,
}
Expand description
An instance of ‘Restore’ Operation with it’s Outputs and Inputs exposed as methods.
Fields§
§op: Operation
An instance of a fully built Restore Operation in a Tensorflow graph.
Implementations§
source§impl RestoreInst
impl RestoreInst
sourcepub fn file_pattern(&self) -> Input<'_>
pub fn file_pattern(&self) -> Input<'_>
Returns the ‘file_pattern’ Input of this ‘Restore’ operation.
sourcepub fn tensor_name(&self) -> Input<'_>
pub fn tensor_name(&self) -> Input<'_>
Returns the ‘tensor_name’ Input of this ‘Restore’ operation.
Trait Implementations§
source§impl Clone for RestoreInst
impl Clone for RestoreInst
source§fn clone(&self) -> RestoreInst
fn clone(&self) -> RestoreInst
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 RestoreInst
impl Debug for RestoreInst
source§impl From<RestoreInst> for Operation
impl From<RestoreInst> for Operation
source§fn from(inst: RestoreInst) -> Operation
fn from(inst: RestoreInst) -> Operation
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for RestoreInst
impl Send for RestoreInst
impl Sync for RestoreInst
impl Unpin for RestoreInst
impl UnwindSafe for RestoreInst
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