pub enum PolicyType {
Always,
Automatic,
Never,
External,
// some variants omitted
}
Variants§
Trait Implementations§
Source§impl Clone for PolicyType
impl Clone for PolicyType
Source§fn clone(&self) -> PolicyType
fn clone(&self) -> PolicyType
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 moreSource§impl Debug for PolicyType
impl Debug for PolicyType
Source§impl Display for PolicyType
impl Display for PolicyType
Source§impl<'a> FromValue<'a> for PolicyType
impl<'a> FromValue<'a> for PolicyType
unsafe fn from_value(value: &Value) -> Self
Source§impl<'a> FromValueOptional<'a> for PolicyType
impl<'a> FromValueOptional<'a> for PolicyType
unsafe fn from_value_optional(value: &Value) -> Option<Self>
Source§impl Hash for PolicyType
impl Hash for PolicyType
Source§impl Ord for PolicyType
impl Ord for PolicyType
Source§fn cmp(&self, other: &PolicyType) -> Ordering
fn cmp(&self, other: &PolicyType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for PolicyType
impl PartialEq for PolicyType
Source§impl PartialOrd for PolicyType
impl PartialOrd for PolicyType
Source§impl StaticType for PolicyType
impl StaticType for PolicyType
Source§fn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self
.impl Copy for PolicyType
impl Eq for PolicyType
impl StructuralPartialEq for PolicyType
Auto Trait Implementations§
impl Freeze for PolicyType
impl RefUnwindSafe for PolicyType
impl Send for PolicyType
impl Sync for PolicyType
impl Unpin for PolicyType
impl UnwindSafe for PolicyType
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<T> ToSendValue for T
impl<T> ToSendValue for T
Source§fn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
Returns a
SendValue
clone of self
.