Struct tensorflow::ops::QueueEnqueue
source · [−]pub struct QueueEnqueue { /* private fields */ }
Expand description
Builder for the QueueEnqueue
operation.
Implementations
sourceimpl QueueEnqueue
impl QueueEnqueue
sourcepub fn Tcomponents<ArgType: Into<Vec<DataType>>>(self, value: ArgType) -> Self
pub fn Tcomponents<ArgType: Into<Vec<DataType>>>(self, value: ArgType) -> Self
Sets the Tcomponents
attribute.
sourcepub fn timeout_ms<ArgType: Into<i64>>(self, value: ArgType) -> Self
pub fn timeout_ms<ArgType: Into<i64>>(self, value: ArgType) -> Self
Sets the timeout_ms
attribute.
sourcepub fn add_control_input(self, op: Operation) -> Self
pub fn add_control_input(self, op: Operation) -> Self
Adds a control input.
sourcepub fn build<O0: Into<Output>, O1: Into<Output>>(
&self,
handle: O0,
components: O1,
scope: &mut Scope
) -> Result<Operation>
pub fn build<O0: Into<Output>, O1: Into<Output>>(
&self,
handle: O0,
components: O1,
scope: &mut Scope
) -> Result<Operation>
Builds the QueueEnqueue
operation.
sourcepub fn build_instance(
&self,
handle: Output,
components: Output,
scope: &mut Scope
) -> Result<QueueEnqueueInst>
pub fn build_instance(
&self,
handle: Output,
components: Output,
scope: &mut Scope
) -> Result<QueueEnqueueInst>
Builds a new instance of ‘QueueEnqueue’ Operation with it’s Outputs and Inputs exposed as methods.
Trait Implementations
sourceimpl Debug for QueueEnqueue
impl Debug for QueueEnqueue
sourceimpl Default for QueueEnqueue
impl Default for QueueEnqueue
sourcefn default() -> QueueEnqueue
fn default() -> QueueEnqueue
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for QueueEnqueue
impl Send for QueueEnqueue
impl Sync for QueueEnqueue
impl Unpin for QueueEnqueue
impl UnwindSafe for QueueEnqueue
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more