pub enum ClickPipePostObjectStorageSourceType {
S3,
Gcs,
Dospaces,
Azureblobstorage,
Cloudflarer2,
Ovhobjectstorage,
Unknown(String),
}Expand description
Inline enum for ClickPipePostObjectStorageSource.type.
Variants§
S3
Gcs
Dospaces
Azureblobstorage
Cloudflarer2
Ovhobjectstorage
Unknown(String)
Catch-all for unknown or newly-added values.
Trait Implementations§
Source§impl Clone for ClickPipePostObjectStorageSourceType
impl Clone for ClickPipePostObjectStorageSourceType
Source§fn clone(&self) -> ClickPipePostObjectStorageSourceType
fn clone(&self) -> ClickPipePostObjectStorageSourceType
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 ClickPipePostObjectStorageSourceType
impl Default for ClickPipePostObjectStorageSourceType
Source§fn default() -> ClickPipePostObjectStorageSourceType
fn default() -> ClickPipePostObjectStorageSourceType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClickPipePostObjectStorageSourceType
impl<'de> Deserialize<'de> for ClickPipePostObjectStorageSourceType
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 PartialEq for ClickPipePostObjectStorageSourceType
impl PartialEq for ClickPipePostObjectStorageSourceType
Source§fn eq(&self, other: &ClickPipePostObjectStorageSourceType) -> bool
fn eq(&self, other: &ClickPipePostObjectStorageSourceType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ClickPipePostObjectStorageSourceType
Auto Trait Implementations§
impl Freeze for ClickPipePostObjectStorageSourceType
impl RefUnwindSafe for ClickPipePostObjectStorageSourceType
impl Send for ClickPipePostObjectStorageSourceType
impl Sync for ClickPipePostObjectStorageSourceType
impl Unpin for ClickPipePostObjectStorageSourceType
impl UnsafeUnpin for ClickPipePostObjectStorageSourceType
impl UnwindSafe for ClickPipePostObjectStorageSourceType
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