pub struct RetrieveContainerFileContentParams {
pub container_id: String,
pub file_id: String,
}
Fields§
§container_id: String
§file_id: String
Implementations§
Source§impl RetrieveContainerFileContentParams
impl RetrieveContainerFileContentParams
Sourcepub fn builder() -> RetrieveContainerFileContentParamsBuilder<((), ())>
pub fn builder() -> RetrieveContainerFileContentParamsBuilder<((), ())>
Create a builder for building RetrieveContainerFileContentParams
.
On the builder, call .container_id(...)
, .file_id(...)
to set the values of the fields.
Finally, call .build()
to create the instance of RetrieveContainerFileContentParams
.
Trait Implementations§
Source§impl Clone for RetrieveContainerFileContentParams
impl Clone for RetrieveContainerFileContentParams
Source§fn clone(&self) -> RetrieveContainerFileContentParams
fn clone(&self) -> RetrieveContainerFileContentParams
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<'de> Deserialize<'de> for RetrieveContainerFileContentParams
impl<'de> Deserialize<'de> for RetrieveContainerFileContentParams
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 RetrieveContainerFileContentParams
impl PartialEq for RetrieveContainerFileContentParams
Source§fn eq(&self, other: &RetrieveContainerFileContentParams) -> bool
fn eq(&self, other: &RetrieveContainerFileContentParams) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RetrieveContainerFileContentParams
Auto Trait Implementations§
impl Freeze for RetrieveContainerFileContentParams
impl RefUnwindSafe for RetrieveContainerFileContentParams
impl Send for RetrieveContainerFileContentParams
impl Sync for RetrieveContainerFileContentParams
impl Unpin for RetrieveContainerFileContentParams
impl UnwindSafe for RetrieveContainerFileContentParams
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