pub struct TargetCell {
pub kind: String,
pub params: Vec<ParamValue>,
pub inputs: Value,
pub output_len: usize,
pub ios: IoValue,
}
Fields§
§kind: String
§params: Vec<ParamValue>
§inputs: Value
§output_len: usize
§ios: IoValue
Implementations§
Trait Implementations§
Source§impl Clone for TargetCell
impl Clone for TargetCell
Source§fn clone(&self) -> TargetCell
fn clone(&self) -> TargetCell
Returns a copy 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 Debug for TargetCell
impl Debug for TargetCell
Source§impl Hash for TargetCell
impl Hash for TargetCell
Source§impl PartialEq for TargetCell
impl PartialEq for TargetCell
impl Eq for TargetCell
impl StructuralPartialEq for TargetCell
Auto Trait Implementations§
impl Freeze for TargetCell
impl RefUnwindSafe for TargetCell
impl Send for TargetCell
impl Sync for TargetCell
impl Unpin for TargetCell
impl UnwindSafe for TargetCell
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.