pub struct LogGroup<'a> {
pub logs: Vec<Log<'a>>,
pub contextFlow: Option<Cow<'a, str>>,
pub filename: Option<Cow<'a, str>>,
pub source: Option<Cow<'a, str>>,
pub logTags: Vec<LogTag<'a>>,
pub hostname: Option<Cow<'a, str>>,
}
Fields§
§logs: Vec<Log<'a>>
§contextFlow: Option<Cow<'a, str>>
§filename: Option<Cow<'a, str>>
§source: Option<Cow<'a, str>>
§logTags: Vec<LogTag<'a>>
§hostname: Option<Cow<'a, str>>
Trait Implementations§
Source§impl<'a> MessageRead<'a> for LogGroup<'a>
impl<'a> MessageRead<'a> for LogGroup<'a>
Source§fn from_reader(r: &mut BytesReader, bytes: &'a [u8]) -> Result<Self>
fn from_reader(r: &mut BytesReader, bytes: &'a [u8]) -> Result<Self>
Constructs an instance of
Self
by reading from the given bytes
via the given reader. Read moreSource§impl<'a> MessageWrite for LogGroup<'a>
impl<'a> MessageWrite for LogGroup<'a>
impl<'a> StructuralPartialEq for LogGroup<'a>
Auto Trait Implementations§
impl<'a> Freeze for LogGroup<'a>
impl<'a> RefUnwindSafe for LogGroup<'a>
impl<'a> Send for LogGroup<'a>
impl<'a> Sync for LogGroup<'a>
impl<'a> Unpin for LogGroup<'a>
impl<'a> UnwindSafe for LogGroup<'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