pub struct RegisterFilesConfig {
pub http_options: Option<HttpOptions>,
pub should_return_http_response: Option<bool>,
}Expand description
Register files configuration.
Fields§
§http_options: Option<HttpOptions>Optional. HTTP request overrides (SDK only, not sent to API).
should_return_http_response: Option<bool>Optional. If true, returns the raw HTTP response body in sdk_http_response.body (SDK only).
Trait Implementations§
Source§impl Clone for RegisterFilesConfig
impl Clone for RegisterFilesConfig
Source§fn clone(&self) -> RegisterFilesConfig
fn clone(&self) -> RegisterFilesConfig
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 Debug for RegisterFilesConfig
impl Debug for RegisterFilesConfig
Source§impl Default for RegisterFilesConfig
impl Default for RegisterFilesConfig
Source§fn default() -> RegisterFilesConfig
fn default() -> RegisterFilesConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RegisterFilesConfig
impl<'de> Deserialize<'de> for RegisterFilesConfig
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 RegisterFilesConfig
impl RefUnwindSafe for RegisterFilesConfig
impl Send for RegisterFilesConfig
impl Sync for RegisterFilesConfig
impl Unpin for RegisterFilesConfig
impl UnsafeUnpin for RegisterFilesConfig
impl UnwindSafe for RegisterFilesConfig
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