pub enum LogEntry<'a> {
CommonLog(CommonLogEntry<'a>),
CombinedLog(CombinedLogEntry<'a>),
GorouterLog(GorouterLogEntry<'a>),
CloudControllerLog(CloudControllerLogEntry<'a>),
}Variants§
CommonLog(CommonLogEntry<'a>)
CombinedLog(CombinedLogEntry<'a>)
GorouterLog(GorouterLogEntry<'a>)
CloudControllerLog(CloudControllerLogEntry<'a>)
Trait Implementations§
Auto Trait Implementations§
impl<'a> !Freeze for LogEntry<'a>
impl<'a> !RefUnwindSafe for LogEntry<'a>
impl<'a> Send for LogEntry<'a>
impl<'a> Sync for LogEntry<'a>
impl<'a> Unpin for LogEntry<'a>
impl<'a> !UnwindSafe for LogEntry<'a>
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