pub enum ResponseKind {
FullyEvaluated(Response),
Partial(PartialResponse),
}
Expand description
A potentially partial response from the authorizer
Variants§
FullyEvaluated(Response)
A fully evaluated response
Partial(PartialResponse)
A response that has some residuals
Implementations§
Trait Implementations§
source§impl Clone for ResponseKind
impl Clone for ResponseKind
source§fn clone(&self) -> ResponseKind
fn clone(&self) -> ResponseKind
Returns a copy 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 moreAuto Trait Implementations§
impl !RefUnwindSafe for ResponseKind
impl !Send for ResponseKind
impl !Sync for ResponseKind
impl Unpin for ResponseKind
impl !UnwindSafe for ResponseKind
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