Struct tensorflow::ops::StringJoin
source · pub struct StringJoin { /* private fields */ }
Expand description
Builder for the StringJoin
operation.
Implementations§
source§impl StringJoin
impl StringJoin
sourcepub fn separator<ArgType: Into<String>>(self, value: ArgType) -> Self
pub fn separator<ArgType: Into<String>>(self, value: ArgType) -> Self
Sets the separator
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>>(
&self,
inputs: O0,
scope: &mut Scope
) -> Result<Operation>
pub fn build<O0: Into<Output>>( &self, inputs: O0, scope: &mut Scope ) -> Result<Operation>
Builds the StringJoin
operation.
sourcepub fn build_instance(
&self,
inputs: Vec<Output>,
scope: &mut Scope
) -> Result<StringJoinInst>
pub fn build_instance( &self, inputs: Vec<Output>, scope: &mut Scope ) -> Result<StringJoinInst>
Builds a new instance of ‘StringJoin’ Operation with it’s Outputs and Inputs exposed as methods.
Trait Implementations§
source§impl Debug for StringJoin
impl Debug for StringJoin
source§impl Default for StringJoin
impl Default for StringJoin
source§fn default() -> StringJoin
fn default() -> StringJoin
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for StringJoin
impl Send for StringJoin
impl Sync for StringJoin
impl Unpin for StringJoin
impl UnwindSafe for StringJoin
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