pub struct Dataset {
pub data_path: Option<Option<Box<DataPath>>>,
pub description: String,
pub display_name: String,
pub id: Uuid,
pub name: String,
pub provenance: Option<Option<Vec<Provenance>>>,
pub result_descriptor: Box<TypedResultDescriptor>,
pub source_operator: String,
pub symbology: Option<Option<Box<Symbology>>>,
pub tags: Option<Option<Vec<String>>>,
}Fields§
§data_path: Option<Option<Box<DataPath>>>§description: String§display_name: String§id: Uuid§name: String§provenance: Option<Option<Vec<Provenance>>>§result_descriptor: Box<TypedResultDescriptor>§source_operator: String§symbology: Option<Option<Box<Symbology>>>Implementations§
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
impl StructuralPartialEq for Dataset
Auto Trait Implementations§
impl Freeze for Dataset
impl RefUnwindSafe for Dataset
impl Send for Dataset
impl Sync for Dataset
impl Unpin for Dataset
impl UnsafeUnpin 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