pub struct ApiCollectionMetadata {Show 15 fields
pub created_by: Option<Box<ApiUserMetadata>>,
pub created_timestamp: String,
pub description: String,
pub draft_schema_version: Option<String>,
pub is_global: bool,
pub last_modified_by: Option<Box<ApiUserMetadata>>,
pub last_modified_timestamp: String,
pub name: String,
pub namespace: String,
pub permissions: Option<Vec<String>>,
pub published_version: Option<String>,
pub schema_version: String,
pub status: Option<String>,
pub version: Option<String>,
pub workflow_meta: Option<Box<ApiWorkflowMetadata>>,
}Fields§
§created_by: Option<Box<ApiUserMetadata>>§created_timestamp: String§description: String§draft_schema_version: Option<String>§is_global: bool§last_modified_by: Option<Box<ApiUserMetadata>>§last_modified_timestamp: String§name: String§namespace: String§permissions: Option<Vec<String>>§published_version: Option<String>§schema_version: String§status: Option<String>§version: Option<String>§workflow_meta: Option<Box<ApiWorkflowMetadata>>Implementations§
Trait Implementations§
Source§impl Clone for ApiCollectionMetadata
impl Clone for ApiCollectionMetadata
Source§fn clone(&self) -> ApiCollectionMetadata
fn clone(&self) -> ApiCollectionMetadata
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 ApiCollectionMetadata
impl Debug for ApiCollectionMetadata
Source§impl Default for ApiCollectionMetadata
impl Default for ApiCollectionMetadata
Source§fn default() -> ApiCollectionMetadata
fn default() -> ApiCollectionMetadata
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApiCollectionMetadata
impl<'de> Deserialize<'de> for ApiCollectionMetadata
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 ApiCollectionMetadata
impl PartialEq for ApiCollectionMetadata
Source§impl Serialize for ApiCollectionMetadata
impl Serialize for ApiCollectionMetadata
impl StructuralPartialEq for ApiCollectionMetadata
Auto Trait Implementations§
impl Freeze for ApiCollectionMetadata
impl RefUnwindSafe for ApiCollectionMetadata
impl Send for ApiCollectionMetadata
impl Sync for ApiCollectionMetadata
impl Unpin for ApiCollectionMetadata
impl UnwindSafe for ApiCollectionMetadata
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