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