pub struct ClipRoot {
pub id: String,
pub title: String,
pub image_url: String,
pub is_public: bool,
pub display_name: String,
pub handle: String,
pub avatar_image_url: String,
}Expand description
One remix/attribution origin from a clip’s nested clip_roots.clips[] list.
Informational lineage the API exposes directly on the clip: the clip was
derived from this root. Identity keys are user_-prefixed here. Every field
defaults to empty/false when absent, so a reshaped or partial entry degrades
rather than fails.
Fields§
§id: String§title: String§image_url: String§is_public: bool§display_name: String§handle: String§avatar_image_url: StringTrait Implementations§
impl StructuralPartialEq for ClipRoot
Auto Trait Implementations§
impl Freeze for ClipRoot
impl RefUnwindSafe for ClipRoot
impl Send for ClipRoot
impl Sync for ClipRoot
impl Unpin for ClipRoot
impl UnsafeUnpin for ClipRoot
impl UnwindSafe for ClipRoot
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