pub struct DatasetListing {
pub description: String,
pub display_name: String,
pub id: Uuid,
pub name: String,
pub result_descriptor: Box<TypedResultDescriptor>,
pub source_operator: String,
pub symbology: Option<Option<Box<Symbology>>>,
pub tags: Vec<String>,
}Fields§
§description: String§display_name: String§id: Uuid§name: String§result_descriptor: Box<TypedResultDescriptor>§source_operator: String§symbology: Option<Option<Box<Symbology>>>Implementations§
Trait Implementations§
Source§impl Clone for DatasetListing
impl Clone for DatasetListing
Source§fn clone(&self) -> DatasetListing
fn clone(&self) -> DatasetListing
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 DatasetListing
impl Debug for DatasetListing
Source§impl Default for DatasetListing
impl Default for DatasetListing
Source§fn default() -> DatasetListing
fn default() -> DatasetListing
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DatasetListing
impl<'de> Deserialize<'de> for DatasetListing
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 DatasetListing
impl PartialEq for DatasetListing
Source§impl Serialize for DatasetListing
impl Serialize for DatasetListing
impl StructuralPartialEq for DatasetListing
Auto Trait Implementations§
impl Freeze for DatasetListing
impl RefUnwindSafe for DatasetListing
impl Send for DatasetListing
impl Sync for DatasetListing
impl Unpin for DatasetListing
impl UnsafeUnpin for DatasetListing
impl UnwindSafe for DatasetListing
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