pub struct ManagedObjectTransferServices {
pub reads: ObjectReadService,
pub downloads: ObjectDownloadService,
pub multipart: MultipartObjectService,
}Expand description
Statically selected large-transfer services installed as one coherent provider profile. The application still owns authorization and session persistence.
Fields§
§reads: ObjectReadService§downloads: ObjectDownloadService§multipart: MultipartObjectServiceImplementations§
Source§impl ManagedObjectTransferServices
impl ManagedObjectTransferServices
pub const fn new( reads: ObjectReadService, downloads: ObjectDownloadService, multipart: MultipartObjectService, ) -> Self
Trait Implementations§
Source§impl Clone for ManagedObjectTransferServices
impl Clone for ManagedObjectTransferServices
Source§fn clone(&self) -> ManagedObjectTransferServices
fn clone(&self) -> ManagedObjectTransferServices
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 moreAuto Trait Implementations§
impl !RefUnwindSafe for ManagedObjectTransferServices
impl !UnwindSafe for ManagedObjectTransferServices
impl Freeze for ManagedObjectTransferServices
impl Send for ManagedObjectTransferServices
impl Sync for ManagedObjectTransferServices
impl Unpin for ManagedObjectTransferServices
impl UnsafeUnpin for ManagedObjectTransferServices
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