pub enum RequestState {
Intake,
PetProfileAttached(PetProfile),
PolicyAttached(PolicyAttachedData),
ReadyForPolicyDecision(PolicyAttachedData),
}Variants§
Intake
PetProfileAttached(PetProfile)
PolicyAttached(PolicyAttachedData)
ReadyForPolicyDecision(PolicyAttachedData)
Auto Trait Implementations§
impl Freeze for RequestState
impl RefUnwindSafe for RequestState
impl Send for RequestState
impl Sync for RequestState
impl Unpin for RequestState
impl UnsafeUnpin for RequestState
impl UnwindSafe for RequestState
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