pub struct AccessHistoryOptions {
pub auth_result: Option<bool>,
pub ip_address: Option<IpAddr>,
pub n_logs: Option<i16>,
pub interval: Option<AccessHistoryOptionsInterval>,
}
Fields§
§auth_result: Option<bool>
Flag that indicates whether the response returns the successful authentication attempts only.
ip_address: Option<IpAddr>
One Internet Protocol address that attempted to authenticate with the database.
n_logs: Option<i16>
Maximum number of lines from the log to return. Range [0 .. 20000], default 20000
interval: Option<AccessHistoryOptionsInterval>
Trait Implementations§
Source§impl Debug for AccessHistoryOptions
impl Debug for AccessHistoryOptions
Source§impl Default for AccessHistoryOptions
impl Default for AccessHistoryOptions
Source§fn default() -> AccessHistoryOptions
fn default() -> AccessHistoryOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AccessHistoryOptions
impl RefUnwindSafe for AccessHistoryOptions
impl Send for AccessHistoryOptions
impl Sync for AccessHistoryOptions
impl Unpin for AccessHistoryOptions
impl UnwindSafe for AccessHistoryOptions
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