pub struct RoderDesignDocument {
pub version: String,
pub document_id: String,
pub title: String,
pub created_at: String,
pub updated_at: String,
pub nodes: BTreeMap<String, RoderDesignNode>,
pub root_ids: Vec<String>,
pub variables: BTreeMap<String, Value>,
pub assets: BTreeMap<String, Value>,
pub metadata: RoderDesignMetadata,
}Fields§
§version: String§document_id: String§title: String§created_at: String§updated_at: String§nodes: BTreeMap<String, RoderDesignNode>§root_ids: Vec<String>§variables: BTreeMap<String, Value>§assets: BTreeMap<String, Value>§metadata: RoderDesignMetadataTrait Implementations§
Source§impl Clone for RoderDesignDocument
impl Clone for RoderDesignDocument
Source§fn clone(&self) -> RoderDesignDocument
fn clone(&self) -> RoderDesignDocument
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 RoderDesignDocument
impl Debug for RoderDesignDocument
Source§impl<'de> Deserialize<'de> for RoderDesignDocument
impl<'de> Deserialize<'de> for RoderDesignDocument
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 Freeze for RoderDesignDocument
impl RefUnwindSafe for RoderDesignDocument
impl Send for RoderDesignDocument
impl Sync for RoderDesignDocument
impl Unpin for RoderDesignDocument
impl UnsafeUnpin for RoderDesignDocument
impl UnwindSafe for RoderDesignDocument
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