pub enum EdgeResultType {
Hit,
RefreshHit,
Miss,
LimitExceeded,
CapacityExceeded,
Error,
Redirect,
LambdaGeneratedResponse,
Other(String),
}Variants§
Hit
RefreshHit
Miss
LimitExceeded
CapacityExceeded
Error
Redirect
LambdaGeneratedResponse
Other(String)
Trait Implementations§
Source§impl AsRef<str> for EdgeResultType
impl AsRef<str> for EdgeResultType
Source§impl Clone for EdgeResultType
impl Clone for EdgeResultType
Source§fn clone(&self) -> EdgeResultType
fn clone(&self) -> EdgeResultType
Returns a duplicate 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 moreSource§impl Debug for EdgeResultType
impl Debug for EdgeResultType
Source§impl Display for EdgeResultType
impl Display for EdgeResultType
Source§impl FromStr for EdgeResultType
impl FromStr for EdgeResultType
Source§impl PartialEq for EdgeResultType
impl PartialEq for EdgeResultType
Source§impl TryFrom<&str> for EdgeResultType
impl TryFrom<&str> for EdgeResultType
impl StructuralPartialEq for EdgeResultType
Auto Trait Implementations§
impl Freeze for EdgeResultType
impl RefUnwindSafe for EdgeResultType
impl Send for EdgeResultType
impl Sync for EdgeResultType
impl Unpin for EdgeResultType
impl UnwindSafe for EdgeResultType
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