pub struct TransitionDef {
pub id: String,
pub name: String,
pub from_layer: TopologyLayer,
pub from_id: String,
pub to_layer: TopologyLayer,
pub to_id: String,
pub mode: TransitionMode,
pub properties: HashMap<String, PropertyValue>,
}Fields§
§id: String§name: String§from_layer: TopologyLayer§from_id: String§to_layer: TopologyLayer§to_id: String§mode: TransitionMode§properties: HashMap<String, PropertyValue>Trait Implementations§
Source§impl Clone for TransitionDef
impl Clone for TransitionDef
Source§fn clone(&self) -> TransitionDef
fn clone(&self) -> TransitionDef
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 TransitionDef
impl Debug for TransitionDef
Source§impl<'de> Deserialize<'de> for TransitionDef
impl<'de> Deserialize<'de> for TransitionDef
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 TransitionDef
impl RefUnwindSafe for TransitionDef
impl Send for TransitionDef
impl Sync for TransitionDef
impl Unpin for TransitionDef
impl UnsafeUnpin for TransitionDef
impl UnwindSafe for TransitionDef
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