pub enum SystemLog {
DebugLog(DebugLog),
Socket(Socket),
}Expand description
Represents either a DebugLog or a Socket logging handle.
Variants§
DebugLog(DebugLog)
Logging using a kernel DebugLog handle.
Socket(Socket)
Logging using a Socket handle.
Auto Trait Implementations§
impl Freeze for SystemLog
impl RefUnwindSafe for SystemLog
impl Send for SystemLog
impl Sync for SystemLog
impl Unpin for SystemLog
impl UnsafeUnpin for SystemLog
impl UnwindSafe for SystemLog
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
§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
§impl<T> InstanceFromServiceTransport<T> for T
impl<T> InstanceFromServiceTransport<T> for T
§fn from_service_transport(handle: T) -> T
fn from_service_transport(handle: T) -> T
Converts the given service transport handle of type
T to [Self]