pub struct AdminS3UpdateCheckRequest {
pub bucket: String,
pub store_prefix: Option<String>,
}Fields§
§bucket: StringBucket name for S3 object store.
store_prefix: Option<String>Store prefix within bucket for S3 object keys (commonly datastore name)
Implementations§
Source§impl AdminS3UpdateCheckRequest
impl AdminS3UpdateCheckRequest
pub fn new(bucket: String) -> AdminS3UpdateCheckRequest
Trait Implementations§
Source§impl Clone for AdminS3UpdateCheckRequest
impl Clone for AdminS3UpdateCheckRequest
Source§fn clone(&self) -> AdminS3UpdateCheckRequest
fn clone(&self) -> AdminS3UpdateCheckRequest
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 Debug for AdminS3UpdateCheckRequest
impl Debug for AdminS3UpdateCheckRequest
Source§impl Default for AdminS3UpdateCheckRequest
impl Default for AdminS3UpdateCheckRequest
Source§fn default() -> AdminS3UpdateCheckRequest
fn default() -> AdminS3UpdateCheckRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AdminS3UpdateCheckRequest
impl<'de> Deserialize<'de> for AdminS3UpdateCheckRequest
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 AdminS3UpdateCheckRequest
impl PartialEq for AdminS3UpdateCheckRequest
Source§fn eq(&self, other: &AdminS3UpdateCheckRequest) -> bool
fn eq(&self, other: &AdminS3UpdateCheckRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AdminS3UpdateCheckRequest
Auto Trait Implementations§
impl Freeze for AdminS3UpdateCheckRequest
impl RefUnwindSafe for AdminS3UpdateCheckRequest
impl Send for AdminS3UpdateCheckRequest
impl Sync for AdminS3UpdateCheckRequest
impl Unpin for AdminS3UpdateCheckRequest
impl UnsafeUnpin for AdminS3UpdateCheckRequest
impl UnwindSafe for AdminS3UpdateCheckRequest
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