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