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