pub struct AuthMachineTransition {
pub from_phase: AuthLifecyclePhase,
pub to_phase: AuthLifecyclePhase,
pub effects: Vec<AuthMachineEffect>,
}Fields§
§from_phase: AuthLifecyclePhase§to_phase: AuthLifecyclePhase§effects: Vec<AuthMachineEffect>Trait Implementations§
Source§impl Clone for AuthMachineTransition
impl Clone for AuthMachineTransition
Source§fn clone(&self) -> AuthMachineTransition
fn clone(&self) -> AuthMachineTransition
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 AuthMachineTransition
impl Debug for AuthMachineTransition
Source§impl PartialEq for AuthMachineTransition
impl PartialEq for AuthMachineTransition
Source§fn eq(&self, other: &AuthMachineTransition) -> bool
fn eq(&self, other: &AuthMachineTransition) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AuthMachineTransition
impl StructuralPartialEq for AuthMachineTransition
Auto Trait Implementations§
impl Freeze for AuthMachineTransition
impl RefUnwindSafe for AuthMachineTransition
impl Send for AuthMachineTransition
impl Sync for AuthMachineTransition
impl Unpin for AuthMachineTransition
impl UnsafeUnpin for AuthMachineTransition
impl UnwindSafe for AuthMachineTransition
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.