#[repr(i32)]pub enum tagURLZONE {
URLZONE_INVALID = -1,
URLZONE_PREDEFINED_MIN = 0,
URLZONE_INTRANET = 1,
URLZONE_TRUSTED = 2,
URLZONE_INTERNET = 3,
URLZONE_UNTRUSTED = 4,
URLZONE_PREDEFINED_MAX = 999,
URLZONE_USER_MIN = 1_000,
URLZONE_USER_MAX = 10_000,
}Variants§
URLZONE_INVALID = -1
URLZONE_PREDEFINED_MIN = 0
URLZONE_INTRANET = 1
URLZONE_TRUSTED = 2
URLZONE_INTERNET = 3
URLZONE_UNTRUSTED = 4
URLZONE_PREDEFINED_MAX = 999
URLZONE_USER_MIN = 1_000
URLZONE_USER_MAX = 10_000
Implementations§
Source§impl tagURLZONE
impl tagURLZONE
pub const URLZONE_LOCAL_MACHINE: tagURLZONE = tagURLZONE::URLZONE_PREDEFINED_MIN
Trait Implementations§
Source§impl Clone for tagURLZONE
impl Clone for tagURLZONE
Source§fn clone(&self) -> tagURLZONE
fn clone(&self) -> tagURLZONE
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 tagURLZONE
impl Debug for tagURLZONE
Source§impl Hash for tagURLZONE
impl Hash for tagURLZONE
Source§impl PartialEq for tagURLZONE
impl PartialEq for tagURLZONE
impl Copy for tagURLZONE
impl Eq for tagURLZONE
impl StructuralPartialEq for tagURLZONE
Auto Trait Implementations§
impl Freeze for tagURLZONE
impl RefUnwindSafe for tagURLZONE
impl Send for tagURLZONE
impl Sync for tagURLZONE
impl Unpin for tagURLZONE
impl UnwindSafe for tagURLZONE
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