pub enum RawSourceKeyV1 {
Scalar,
Clip {
source_clip_index: u64,
},
Channel {
source_clip_index: u64,
source_channel_index: u64,
},
Construct {
source_order_index: u64,
},
Resource {
source_order_index: u64,
source_index: u64,
},
SourceSkeleton {
row_kind: SourceSkeletonRowKindV1,
source_index: u64,
},
}Expand description
Stable raw-source row identity.
Variants§
Scalar
File-level scalar observation; no row index exists.
Clip
Source clip/take row.
Channel
Source channel row nested in a clip.
Fields
Construct
Source construct row.
Resource
Source resource declaration row.
Fields
SourceSkeleton
Source node or skin row.
Fields
§
row_kind: SourceSkeletonRowKindV1Node-versus-skin row domain.
Trait Implementations§
Source§impl Clone for RawSourceKeyV1
impl Clone for RawSourceKeyV1
Source§fn clone(&self) -> RawSourceKeyV1
fn clone(&self) -> RawSourceKeyV1
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 RawSourceKeyV1
impl Debug for RawSourceKeyV1
Source§impl<'de> Deserialize<'de> for RawSourceKeyV1
impl<'de> Deserialize<'de> for RawSourceKeyV1
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
impl Eq for RawSourceKeyV1
Source§impl Ord for RawSourceKeyV1
impl Ord for RawSourceKeyV1
Source§fn cmp(&self, other: &RawSourceKeyV1) -> Ordering
fn cmp(&self, other: &RawSourceKeyV1) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RawSourceKeyV1
impl PartialEq for RawSourceKeyV1
Source§impl PartialOrd for RawSourceKeyV1
impl PartialOrd for RawSourceKeyV1
Source§impl Serialize for RawSourceKeyV1
impl Serialize for RawSourceKeyV1
impl StructuralPartialEq for RawSourceKeyV1
Auto Trait Implementations§
impl Freeze for RawSourceKeyV1
impl RefUnwindSafe for RawSourceKeyV1
impl Send for RawSourceKeyV1
impl Sync for RawSourceKeyV1
impl Unpin for RawSourceKeyV1
impl UnsafeUnpin for RawSourceKeyV1
impl UnwindSafe for RawSourceKeyV1
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