pub struct AuditWindow {
pub since: Option<String>,
pub until: Option<String>,
}Expand description
Query-window echo returned inside AuditResponse::window. Mirrors the
App-side AuditWindow — echoes the caller’s since / until filter
values verbatim (or None when the filter was omitted).
Fields§
§since: Option<String>§until: Option<String>Trait Implementations§
Source§impl Clone for AuditWindow
impl Clone for AuditWindow
Source§fn clone(&self) -> AuditWindow
fn clone(&self) -> AuditWindow
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AuditWindow
impl Debug for AuditWindow
Source§impl Default for AuditWindow
impl Default for AuditWindow
Source§fn default() -> AuditWindow
fn default() -> AuditWindow
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuditWindowwhere
AuditWindow: Default,
impl<'de> Deserialize<'de> for AuditWindowwhere
AuditWindow: Default,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AuditWindow
impl RefUnwindSafe for AuditWindow
impl Send for AuditWindow
impl Sync for AuditWindow
impl Unpin for AuditWindow
impl UnsafeUnpin for AuditWindow
impl UnwindSafe for AuditWindow
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