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