pub enum RouteInheritanceMode {
InheritParent,
ExplicitOverrideOnly,
}Expand description
Enumerates the finite route inheritance mode cases. Serialized names are part of the SDK contract; update fixtures when variants change.
Variants§
InheritParent
Use this variant when the contract needs to represent inherit parent; selecting it has no side effect by itself.
ExplicitOverrideOnly
Use this variant when the contract needs to represent explicit override only; selecting it has no side effect by itself.
Trait Implementations§
Source§impl Clone for RouteInheritanceMode
impl Clone for RouteInheritanceMode
Source§fn clone(&self) -> RouteInheritanceMode
fn clone(&self) -> RouteInheritanceMode
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 RouteInheritanceMode
impl Debug for RouteInheritanceMode
Source§impl<'de> Deserialize<'de> for RouteInheritanceMode
impl<'de> Deserialize<'de> for RouteInheritanceMode
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 RouteInheritanceMode
Source§impl PartialEq for RouteInheritanceMode
impl PartialEq for RouteInheritanceMode
Source§fn eq(&self, other: &RouteInheritanceMode) -> bool
fn eq(&self, other: &RouteInheritanceMode) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RouteInheritanceMode
impl Serialize for RouteInheritanceMode
impl StructuralPartialEq for RouteInheritanceMode
Auto Trait Implementations§
impl Freeze for RouteInheritanceMode
impl RefUnwindSafe for RouteInheritanceMode
impl Send for RouteInheritanceMode
impl Sync for RouteInheritanceMode
impl Unpin for RouteInheritanceMode
impl UnsafeUnpin for RouteInheritanceMode
impl UnwindSafe for RouteInheritanceMode
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