pub struct UpdateRuntimeFileLibrarySettings {
pub storage_root: String,
pub max_upload_size_mb: usize,
pub max_upload_request_size_mb: usize,
pub ingest_concurrency: usize,
pub pdf_pages_per_task: u32,
pub s3: Option<UpdateRuntimeS3Settings>,
}Fields§
§storage_root: String§max_upload_size_mb: usize§max_upload_request_size_mb: usize§ingest_concurrency: usize§pdf_pages_per_task: u32§s3: Option<UpdateRuntimeS3Settings>Trait Implementations§
Source§impl Clone for UpdateRuntimeFileLibrarySettings
impl Clone for UpdateRuntimeFileLibrarySettings
Source§fn clone(&self) -> UpdateRuntimeFileLibrarySettings
fn clone(&self) -> UpdateRuntimeFileLibrarySettings
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 ComposeSchema for UpdateRuntimeFileLibrarySettings
impl ComposeSchema for UpdateRuntimeFileLibrarySettings
Source§impl<'de> Deserialize<'de> for UpdateRuntimeFileLibrarySettings
impl<'de> Deserialize<'de> for UpdateRuntimeFileLibrarySettings
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 UpdateRuntimeFileLibrarySettings
impl RefUnwindSafe for UpdateRuntimeFileLibrarySettings
impl Send for UpdateRuntimeFileLibrarySettings
impl Sync for UpdateRuntimeFileLibrarySettings
impl Unpin for UpdateRuntimeFileLibrarySettings
impl UnsafeUnpin for UpdateRuntimeFileLibrarySettings
impl UnwindSafe for UpdateRuntimeFileLibrarySettings
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