Struct netsblox_api_common::ProjectMetadata
source · pub struct ProjectMetadata {
pub id: ProjectId,
pub owner: String,
pub name: String,
pub updated: SystemTime,
pub state: PublishState,
pub collaborators: Vec<String>,
pub network_traces: Vec<NetworkTraceMetadata>,
pub origin_time: SystemTime,
pub save_state: SaveState,
pub roles: HashMap<RoleId, RoleMetadata>,
}
Fields§
§id: ProjectId
§owner: String
§name: String
§updated: SystemTime
§state: PublishState
§collaborators: Vec<String>
§network_traces: Vec<NetworkTraceMetadata>
§origin_time: SystemTime
§save_state: SaveState
§roles: HashMap<RoleId, RoleMetadata>
Trait Implementations§
source§impl Clone for ProjectMetadata
impl Clone for ProjectMetadata
source§fn clone(&self) -> ProjectMetadata
fn clone(&self) -> ProjectMetadata
Returns a copy 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 ProjectMetadata
impl Debug for ProjectMetadata
source§impl<'de> Deserialize<'de> for ProjectMetadata
impl<'de> Deserialize<'de> for ProjectMetadata
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 RefUnwindSafe for ProjectMetadata
impl Send for ProjectMetadata
impl Sync for ProjectMetadata
impl Unpin for ProjectMetadata
impl UnwindSafe for ProjectMetadata
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