pub enum ReachabilityError {
FailedToDetermineReachability,
UnrecognizedFlags(u32),
}
Expand description
Failure to determine reachability
Variants§
FailedToDetermineReachability
SCNetworkReachabilityGetFlags
call failed.
UnrecognizedFlags(u32)
SCNetworkReachabilityGetFlags
call returned unrecognized flags.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ReachabilityError
impl RefUnwindSafe for ReachabilityError
impl Send for ReachabilityError
impl Sync for ReachabilityError
impl Unpin for ReachabilityError
impl UnwindSafe for ReachabilityError
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