pub struct PathCondition {
pub from: String,
pub to: String,
pub edge: String,
pub direction: PathDirection,
}Fields§
§from: String§to: String§edge: String§direction: PathDirectionTrait Implementations§
Source§impl Clone for PathCondition
impl Clone for PathCondition
Source§fn clone(&self) -> PathCondition
fn clone(&self) -> PathCondition
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 PathCondition
impl Debug for PathCondition
Source§impl<'de> Deserialize<'de> for PathCondition
impl<'de> Deserialize<'de> for PathCondition
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 PathCondition
impl RefUnwindSafe for PathCondition
impl Send for PathCondition
impl Sync for PathCondition
impl Unpin for PathCondition
impl UnsafeUnpin for PathCondition
impl UnwindSafe for PathCondition
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