pub struct SystemEvents<'a> {
pub since: Option<&'a str>,
pub until: Option<&'a str>,
pub filters: Option<&'a str>,
}
Available on crate feature
v5
only.Fields§
§since: Option<&'a str>
start streaming events from this time
until: Option<&'a str>
stop streaming events later than this
filters: Option<&'a str>
JSON encoded map[string][]string of constraints
Trait Implementations§
Source§impl<'a> Debug for SystemEvents<'a>
impl<'a> Debug for SystemEvents<'a>
Source§impl<'a> Default for SystemEvents<'a>
impl<'a> Default for SystemEvents<'a>
Source§fn default() -> SystemEvents<'a>
fn default() -> SystemEvents<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for SystemEvents<'a>
impl<'a> RefUnwindSafe for SystemEvents<'a>
impl<'a> Send for SystemEvents<'a>
impl<'a> Sync for SystemEvents<'a>
impl<'a> Unpin for SystemEvents<'a>
impl<'a> UnwindSafe for SystemEvents<'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