pub struct DownloadObjectOptional<'a> {
pub standard_params: StandardQueryParameters<'a>,
pub generation: Option<i64>,
pub conditionals: Conditionals,
pub projection: Option<Projection>,
pub user_project: Option<&'a str>,
}Fields§
§standard_params: StandardQueryParameters<'a>§generation: Option<i64>If present, selects a specific revision of this object (as opposed to the latest version, the default).
conditionals: Conditionals§projection: Option<Projection>Set of properties to return. Defaults to noAcl, unless the object
resource specifies the acl property, when it defaults to full.
user_project: Option<&'a str>The project to be billed for this request. Required for Requester Pays buckets.
Trait Implementations§
Source§impl<'a> Default for DownloadObjectOptional<'a>
impl<'a> Default for DownloadObjectOptional<'a>
Source§fn default() -> DownloadObjectOptional<'a>
fn default() -> DownloadObjectOptional<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for DownloadObjectOptional<'a>
impl<'a> RefUnwindSafe for DownloadObjectOptional<'a>
impl<'a> Send for DownloadObjectOptional<'a>
impl<'a> Sync for DownloadObjectOptional<'a>
impl<'a> Unpin for DownloadObjectOptional<'a>
impl<'a> UnsafeUnpin for DownloadObjectOptional<'a>
impl<'a> UnwindSafe for DownloadObjectOptional<'a>
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