pub struct CreateFileConfig {
pub http_options: Option<HttpOptions>,
pub should_return_http_response: Option<bool>,
}Expand description
Create file request configuration (resumable upload start).
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 CreateFileConfig
impl Clone for CreateFileConfig
Source§fn clone(&self) -> CreateFileConfig
fn clone(&self) -> CreateFileConfig
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 CreateFileConfig
impl Debug for CreateFileConfig
Source§impl Default for CreateFileConfig
impl Default for CreateFileConfig
Source§fn default() -> CreateFileConfig
fn default() -> CreateFileConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateFileConfig
impl<'de> Deserialize<'de> for CreateFileConfig
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 CreateFileConfig
impl RefUnwindSafe for CreateFileConfig
impl Send for CreateFileConfig
impl Sync for CreateFileConfig
impl Unpin for CreateFileConfig
impl UnsafeUnpin for CreateFileConfig
impl UnwindSafe for CreateFileConfig
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