pub struct FlowStartingPoint {
pub node_id: String,
pub name: String,
}
Expand description
FlowStartingPoint : A flow starting point used when launching a prototype to enter Presentation view.
Fields§
§node_id: String
Unique identifier specifying the frame.
name: String
Name of flow.
Implementations§
Source§impl FlowStartingPoint
impl FlowStartingPoint
Sourcepub fn new(node_id: String, name: String) -> FlowStartingPoint
pub fn new(node_id: String, name: String) -> FlowStartingPoint
A flow starting point used when launching a prototype to enter Presentation view.
Trait Implementations§
Source§impl Clone for FlowStartingPoint
impl Clone for FlowStartingPoint
Source§fn clone(&self) -> FlowStartingPoint
fn clone(&self) -> FlowStartingPoint
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 FlowStartingPoint
impl Debug for FlowStartingPoint
Source§impl Default for FlowStartingPoint
impl Default for FlowStartingPoint
Source§fn default() -> FlowStartingPoint
fn default() -> FlowStartingPoint
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FlowStartingPoint
impl<'de> Deserialize<'de> for FlowStartingPoint
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 FlowStartingPoint
impl PartialEq for FlowStartingPoint
Source§impl Serialize for FlowStartingPoint
impl Serialize for FlowStartingPoint
impl StructuralPartialEq for FlowStartingPoint
Auto Trait Implementations§
impl Freeze for FlowStartingPoint
impl RefUnwindSafe for FlowStartingPoint
impl Send for FlowStartingPoint
impl Sync for FlowStartingPoint
impl Unpin for FlowStartingPoint
impl UnwindSafe for FlowStartingPoint
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