pub struct Dataset {
pub id: String,
pub name: Option<String>,
pub user_id: String,
pub created_at: String,
pub modified_at: String,
pub accessed_at: String,
pub item_count: u32,
pub clean_item_count: Option<u32>,
pub act_id: Option<String>,
pub act_run_id: Option<String>,
}
Fields§
§id: String
§name: Option<String>
§user_id: String
§created_at: String
§modified_at: String
§accessed_at: String
§item_count: u32
§clean_item_count: Option<u32>
§act_id: Option<String>
§act_run_id: Option<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Dataset
impl<'de> Deserialize<'de> for Dataset
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 Dataset
impl RefUnwindSafe for Dataset
impl Send for Dataset
impl Sync for Dataset
impl Unpin for Dataset
impl UnwindSafe for Dataset
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