pub struct Response200Api {Show 18 fields
pub host: CompactString,
pub port: u32,
pub ssl: Response200ApiSsl,
pub redirects: IndexMap<CompactString, CompactString>,
pub disable_openapi_docs: bool,
pub disable_remote_download: bool,
pub server_remote_download_limit: u64,
pub remote_download_blocked_cidrs: Vec<CompactString>,
pub disable_directory_size: bool,
pub directory_entry_limit: u64,
pub send_offline_server_logs: bool,
pub file_search_threads: u64,
pub file_copy_threads: u64,
pub file_decompression_threads: u64,
pub file_compression_threads: u64,
pub upload_limit: MiB,
pub max_jwt_uses: u64,
pub trusted_proxies: Vec<CompactString>,
}Fields§
§host: CompactString§port: u32§ssl: Response200ApiSsl§redirects: IndexMap<CompactString, CompactString>§disable_openapi_docs: bool§disable_remote_download: bool§server_remote_download_limit: u64§remote_download_blocked_cidrs: Vec<CompactString>§disable_directory_size: bool§directory_entry_limit: u64§send_offline_server_logs: bool§file_search_threads: u64§file_copy_threads: u64§file_decompression_threads: u64§file_compression_threads: u64§upload_limit: MiB§max_jwt_uses: u64§trusted_proxies: Vec<CompactString>Trait Implementations§
Source§impl Clone for Response200Api
impl Clone for Response200Api
Source§fn clone(&self) -> Response200Api
fn clone(&self) -> Response200Api
Returns a duplicate 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 ComposeSchema for Response200Api
impl ComposeSchema for Response200Api
Source§impl Debug for Response200Api
impl Debug for Response200Api
Source§impl<'de> Deserialize<'de> for Response200Api
impl<'de> Deserialize<'de> for Response200Api
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 Serialize for Response200Api
impl Serialize for Response200Api
Auto Trait Implementations§
impl Freeze for Response200Api
impl RefUnwindSafe for Response200Api
impl Send for Response200Api
impl Sync for Response200Api
impl Unpin for Response200Api
impl UnwindSafe for Response200Api
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more