pub struct Node {
pub title: String,
pub created_at: String,
pub clip_type: String,
pub task: String,
pub is_remix: bool,
pub is_trashed: bool,
pub status: String,
pub first_seen_at: String,
pub last_seen_at: String,
}Expand description
One clip in the graph. Mirrors the fields lineage needs to survive a purge: enough to name and date the clip long after Suno deletes it.
Fields§
§title: String§created_at: String§clip_type: String§task: String§is_remix: bool§is_trashed: bool§status: StringLifecycle marker; "observed" for a clip seen from the feed or gap-fill.
first_seen_at: String§last_seen_at: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for Node
impl<'de> Deserialize<'de> for Node
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 StructuralPartialEq for Node
Auto Trait Implementations§
impl Freeze for Node
impl RefUnwindSafe for Node
impl Send for Node
impl Sync for Node
impl Unpin for Node
impl UnsafeUnpin for Node
impl UnwindSafe for Node
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