pub struct DatasetPreview {
pub id: Uuid,
pub created_at: String,
pub updated_at: String,
pub deleted_at: Option<String>,
pub name: String,
pub description: String,
pub owner_id: Uuid,
pub workspace_id: Uuid,
}Fields§
§id: Uuid§created_at: String§updated_at: String§deleted_at: Option<String>§name: String§description: String§owner_id: Uuid§workspace_id: UuidImplementations§
Trait Implementations§
Source§impl Clone for DatasetPreview
impl Clone for DatasetPreview
Source§fn clone(&self) -> DatasetPreview
fn clone(&self) -> DatasetPreview
Returns a duplicate of the value. Read more
1.0.0 · 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 DatasetPreview
impl Debug for DatasetPreview
Source§impl Default for DatasetPreview
impl Default for DatasetPreview
Source§fn default() -> DatasetPreview
fn default() -> DatasetPreview
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DatasetPreview
impl<'de> Deserialize<'de> for DatasetPreview
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
Source§impl PartialEq for DatasetPreview
impl PartialEq for DatasetPreview
Source§impl Serialize for DatasetPreview
impl Serialize for DatasetPreview
impl StructuralPartialEq for DatasetPreview
Auto Trait Implementations§
impl Freeze for DatasetPreview
impl RefUnwindSafe for DatasetPreview
impl Send for DatasetPreview
impl Sync for DatasetPreview
impl Unpin for DatasetPreview
impl UnsafeUnpin for DatasetPreview
impl UnwindSafe for DatasetPreview
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