pub struct DescriptorDiff {
pub bindings_dropped: Vec<u32>,
pub bindings_added: Vec<u32>,
pub op_count_delta: BTreeMap<Vec<usize>, i64>,
pub root_shape_changed: bool,
}Fields§
§bindings_dropped: Vec<u32>§bindings_added: Vec<u32>§op_count_delta: BTreeMap<Vec<usize>, i64>§root_shape_changed: boolTrait Implementations§
Source§impl Clone for DescriptorDiff
impl Clone for DescriptorDiff
Source§fn clone(&self) -> DescriptorDiff
fn clone(&self) -> DescriptorDiff
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DescriptorDiff
impl Debug for DescriptorDiff
Source§impl<'de> Deserialize<'de> for DescriptorDiff
impl<'de> Deserialize<'de> for DescriptorDiff
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DescriptorDiff
impl RefUnwindSafe for DescriptorDiff
impl Send for DescriptorDiff
impl Sync for DescriptorDiff
impl Unpin for DescriptorDiff
impl UnsafeUnpin for DescriptorDiff
impl UnwindSafe for DescriptorDiff
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