pub struct RestMethodMediaUploadProtocolsResumable {
pub multipart: Option<bool>,
pub path: Option<String>,
}Expand description
Supports the Resumable Media Upload protocol.
This type is not used in any activity, and only used as part of another schema.
Fields§
§multipart: Option<bool>True if this endpoint supports uploading multipart media.
path: Option<String>The URI path to be used for upload. Should be used in conjunction with the basePath property at the api-level.
Trait Implementations§
Source§impl Clone for RestMethodMediaUploadProtocolsResumable
impl Clone for RestMethodMediaUploadProtocolsResumable
Source§fn clone(&self) -> RestMethodMediaUploadProtocolsResumable
fn clone(&self) -> RestMethodMediaUploadProtocolsResumable
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 Default for RestMethodMediaUploadProtocolsResumable
impl Default for RestMethodMediaUploadProtocolsResumable
Source§fn default() -> RestMethodMediaUploadProtocolsResumable
fn default() -> RestMethodMediaUploadProtocolsResumable
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RestMethodMediaUploadProtocolsResumable
impl<'de> Deserialize<'de> for RestMethodMediaUploadProtocolsResumable
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
impl NestedType for RestMethodMediaUploadProtocolsResumable
impl Part for RestMethodMediaUploadProtocolsResumable
Auto Trait Implementations§
impl Freeze for RestMethodMediaUploadProtocolsResumable
impl RefUnwindSafe for RestMethodMediaUploadProtocolsResumable
impl Send for RestMethodMediaUploadProtocolsResumable
impl Sync for RestMethodMediaUploadProtocolsResumable
impl Unpin for RestMethodMediaUploadProtocolsResumable
impl UnsafeUnpin for RestMethodMediaUploadProtocolsResumable
impl UnwindSafe for RestMethodMediaUploadProtocolsResumable
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