pub struct DesignEditorStateResult {
pub path: String,
pub document: RoderDesignDocument,
pub selected_node_ids: Vec<String>,
pub node_aliases: Vec<DesignNodeAlias>,
pub schema: Option<Value>,
pub rules: Option<String>,
}Fields§
§path: String§document: RoderDesignDocument§selected_node_ids: Vec<String>§node_aliases: Vec<DesignNodeAlias>§schema: Option<Value>§rules: Option<String>Trait Implementations§
Source§impl Clone for DesignEditorStateResult
impl Clone for DesignEditorStateResult
Source§fn clone(&self) -> DesignEditorStateResult
fn clone(&self) -> DesignEditorStateResult
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 DesignEditorStateResult
impl Debug for DesignEditorStateResult
Source§impl<'de> Deserialize<'de> for DesignEditorStateResult
impl<'de> Deserialize<'de> for DesignEditorStateResult
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 DesignEditorStateResult
impl RefUnwindSafe for DesignEditorStateResult
impl Send for DesignEditorStateResult
impl Sync for DesignEditorStateResult
impl Unpin for DesignEditorStateResult
impl UnsafeUnpin for DesignEditorStateResult
impl UnwindSafe for DesignEditorStateResult
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