pub struct FunctionBlockBase<I, Q, S>{
pub input: I,
pub output: Q,
pub stat: S,
}
Fields§
§input: I
§output: Q
§stat: S
Implementations§
Trait Implementations§
Source§impl<I, Q, S> Clone for FunctionBlockBase<I, Q, S>
impl<I, Q, S> Clone for FunctionBlockBase<I, Q, S>
Source§fn clone(&self) -> FunctionBlockBase<I, Q, S>
fn clone(&self) -> FunctionBlockBase<I, Q, S>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<I, Q, S> Default for FunctionBlockBase<I, Q, S>
impl<I, Q, S> Default for FunctionBlockBase<I, Q, S>
Source§fn default() -> FunctionBlockBase<I, Q, S>
fn default() -> FunctionBlockBase<I, Q, S>
Returns the “default value” for a type. Read more
Source§impl IFunctionBlock<I, Q, S> for FunctionBlockBase<I, Q, S>
impl IFunctionBlock<I, Q, S> for FunctionBlockBase<I, Q, S>
Source§impl IFunctionBlock<I, Q, S> for FunctionBlockBase<I, Q, S>
impl IFunctionBlock<I, Q, S> for FunctionBlockBase<I, Q, S>
Source§impl<I, Q, S> Serialize for FunctionBlockBase<I, Q, S>
impl<I, Q, S> Serialize for FunctionBlockBase<I, Q, S>
Auto Trait Implementations§
impl<I, Q, S> Freeze for FunctionBlockBase<I, Q, S>
impl<I, Q, S> RefUnwindSafe for FunctionBlockBase<I, Q, S>
impl<I, Q, S> Send for FunctionBlockBase<I, Q, S>
impl<I, Q, S> Sync for FunctionBlockBase<I, Q, S>
impl<I, Q, S> Unpin for FunctionBlockBase<I, Q, S>
impl<I, Q, S> UnwindSafe for FunctionBlockBase<I, Q, S>
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