pub struct PlannedNode {
pub short_name: String,
pub short_description: String,
pub long_description: String,
pub owner: String,
pub fixed_connections: Vec<String>,
pub recent_connections: Vec<String>,
pub objects: Vec<String>,
pub attach_session_archive: bool,
}Expand description
A node whose pending references will be resolved during commit.
Fields§
§short_name: String§short_description: String§long_description: String§owner: String§fixed_connections: Vec<String>§recent_connections: Vec<String>§objects: Vec<String>§attach_session_archive: boolThe serialized name preserves existing Kennedy checkpoints.
Trait Implementations§
Source§impl Clone for PlannedNode
impl Clone for PlannedNode
Source§fn clone(&self) -> PlannedNode
fn clone(&self) -> PlannedNode
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 PlannedNode
impl Debug for PlannedNode
Source§impl<'de> Deserialize<'de> for PlannedNode
impl<'de> Deserialize<'de> for PlannedNode
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
impl Eq for PlannedNode
Source§impl PartialEq for PlannedNode
impl PartialEq for PlannedNode
Source§impl Serialize for PlannedNode
impl Serialize for PlannedNode
impl StructuralPartialEq for PlannedNode
Auto Trait Implementations§
impl Freeze for PlannedNode
impl RefUnwindSafe for PlannedNode
impl Send for PlannedNode
impl Sync for PlannedNode
impl Unpin for PlannedNode
impl UnsafeUnpin for PlannedNode
impl UnwindSafe for PlannedNode
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