pub struct LoggingSftpResponseAllOf {
pub address: Option<String>,
pub port: Option<String>,
pub period: Option<String>,
pub gzip_level: Option<i32>,
}
Fields§
§address: Option<String>
A hostname or IPv4 address.
port: Option<String>
The port number.
period: Option<String>
How frequently log files are finalized so they can be available for reading (in seconds).
gzip_level: Option<i32>
The level of gzip encoding when sending logs (default 0
, no compression). Specifying both compression_codec
and gzip_level
in the same API request will result in an error.
Implementations§
Source§impl LoggingSftpResponseAllOf
impl LoggingSftpResponseAllOf
pub fn new() -> LoggingSftpResponseAllOf
Trait Implementations§
Source§impl Clone for LoggingSftpResponseAllOf
impl Clone for LoggingSftpResponseAllOf
Source§fn clone(&self) -> LoggingSftpResponseAllOf
fn clone(&self) -> LoggingSftpResponseAllOf
Returns a copy of the value. Read more
1.0.0 · 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 LoggingSftpResponseAllOf
impl Debug for LoggingSftpResponseAllOf
Source§impl Default for LoggingSftpResponseAllOf
impl Default for LoggingSftpResponseAllOf
Source§fn default() -> LoggingSftpResponseAllOf
fn default() -> LoggingSftpResponseAllOf
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LoggingSftpResponseAllOf
impl<'de> Deserialize<'de> for LoggingSftpResponseAllOf
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
Source§impl PartialEq for LoggingSftpResponseAllOf
impl PartialEq for LoggingSftpResponseAllOf
Source§impl Serialize for LoggingSftpResponseAllOf
impl Serialize for LoggingSftpResponseAllOf
impl StructuralPartialEq for LoggingSftpResponseAllOf
Auto Trait Implementations§
impl Freeze for LoggingSftpResponseAllOf
impl RefUnwindSafe for LoggingSftpResponseAllOf
impl Send for LoggingSftpResponseAllOf
impl Sync for LoggingSftpResponseAllOf
impl Unpin for LoggingSftpResponseAllOf
impl UnwindSafe for LoggingSftpResponseAllOf
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