pub struct SessionMetadata {
pub composer_id: String,
pub title: Option<String>,
pub created_at_ms: Option<i64>,
pub updated_at_ms: Option<i64>,
}Expand description
Stable session metadata used by list, stats, and export.
Fields§
§composer_id: String§title: Option<String>§created_at_ms: Option<i64>§updated_at_ms: Option<i64>Trait Implementations§
Source§impl Clone for SessionMetadata
impl Clone for SessionMetadata
Source§fn clone(&self) -> SessionMetadata
fn clone(&self) -> SessionMetadata
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 SessionMetadata
impl Debug for SessionMetadata
Source§impl PartialEq for SessionMetadata
impl PartialEq for SessionMetadata
Source§fn eq(&self, other: &SessionMetadata) -> bool
fn eq(&self, other: &SessionMetadata) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SessionMetadata
impl StructuralPartialEq for SessionMetadata
Auto Trait Implementations§
impl Freeze for SessionMetadata
impl RefUnwindSafe for SessionMetadata
impl Send for SessionMetadata
impl Sync for SessionMetadata
impl Unpin for SessionMetadata
impl UnsafeUnpin for SessionMetadata
impl UnwindSafe for SessionMetadata
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