pub struct ContentExport {
pub id: u64,
pub created_at: Option<String>,
pub export_type: Option<String>,
pub user_id: Option<u64>,
pub workflow_state: Option<String>,
pub course_id: Option<u64>,
pub attachment: Option<Value>,
pub progress_url: Option<String>,
}Fields§
§id: u64§created_at: Option<String>§export_type: Option<String>§user_id: Option<u64>§workflow_state: Option<String>§course_id: Option<u64>§attachment: Option<Value>§progress_url: Option<String>Trait Implementations§
Source§impl Clone for ContentExport
impl Clone for ContentExport
Source§fn clone(&self) -> ContentExport
fn clone(&self) -> ContentExport
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 ContentExport
impl Debug for ContentExport
Source§impl<'de> Deserialize<'de> for ContentExport
impl<'de> Deserialize<'de> for ContentExport
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 ContentExport
impl RefUnwindSafe for ContentExport
impl Send for ContentExport
impl Sync for ContentExport
impl Unpin for ContentExport
impl UnsafeUnpin for ContentExport
impl UnwindSafe for ContentExport
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