pub struct ProjectListing {
pub changed: String,
pub description: String,
pub id: Uuid,
pub layer_names: Vec<String>,
pub name: String,
pub plot_names: Vec<String>,
}Fields§
§changed: String§description: String§id: Uuid§layer_names: Vec<String>§name: String§plot_names: Vec<String>Implementations§
Trait Implementations§
Source§impl Clone for ProjectListing
impl Clone for ProjectListing
Source§fn clone(&self) -> ProjectListing
fn clone(&self) -> ProjectListing
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 ProjectListing
impl Debug for ProjectListing
Source§impl Default for ProjectListing
impl Default for ProjectListing
Source§fn default() -> ProjectListing
fn default() -> ProjectListing
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectListing
impl<'de> Deserialize<'de> for ProjectListing
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 ProjectListing
impl PartialEq for ProjectListing
Source§fn eq(&self, other: &ProjectListing) -> bool
fn eq(&self, other: &ProjectListing) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProjectListing
impl Serialize for ProjectListing
impl StructuralPartialEq for ProjectListing
Auto Trait Implementations§
impl Freeze for ProjectListing
impl RefUnwindSafe for ProjectListing
impl Send for ProjectListing
impl Sync for ProjectListing
impl Unpin for ProjectListing
impl UnsafeUnpin for ProjectListing
impl UnwindSafe for ProjectListing
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