pub struct UpdateSupabaseCredentialDto {
pub fallback_index: Option<f64>,
pub name: Option<String>,
pub bucket_plan: Option<SupabaseBucketPlan>,
}
Fields§
§fallback_index: Option<f64>
This is the order in which this storage provider is tried during upload retries. Lower numbers are tried first in increasing order.
name: Option<String>
This is the name of credential. This is just for your reference.
bucket_plan: Option<SupabaseBucketPlan>
Implementations§
Source§impl UpdateSupabaseCredentialDto
impl UpdateSupabaseCredentialDto
pub fn new() -> UpdateSupabaseCredentialDto
Trait Implementations§
Source§impl Clone for UpdateSupabaseCredentialDto
impl Clone for UpdateSupabaseCredentialDto
Source§fn clone(&self) -> UpdateSupabaseCredentialDto
fn clone(&self) -> UpdateSupabaseCredentialDto
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UpdateSupabaseCredentialDto
impl Debug for UpdateSupabaseCredentialDto
Source§impl Default for UpdateSupabaseCredentialDto
impl Default for UpdateSupabaseCredentialDto
Source§fn default() -> UpdateSupabaseCredentialDto
fn default() -> UpdateSupabaseCredentialDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateSupabaseCredentialDto
impl<'de> Deserialize<'de> for UpdateSupabaseCredentialDto
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 StructuralPartialEq for UpdateSupabaseCredentialDto
Auto Trait Implementations§
impl Freeze for UpdateSupabaseCredentialDto
impl RefUnwindSafe for UpdateSupabaseCredentialDto
impl Send for UpdateSupabaseCredentialDto
impl Sync for UpdateSupabaseCredentialDto
impl Unpin for UpdateSupabaseCredentialDto
impl UnwindSafe for UpdateSupabaseCredentialDto
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