pub struct FetchStreamOutcome {
pub bytes_written: u64,
pub decision: Option<String>,
}Expand description
CLEANLIB-881 — streaming sibling of FetchArtifact, returned by
Client::fetch_artifact_stream. Same decision semantics.
Fields§
§bytes_written: u64§decision: Option<String>Trait Implementations§
Source§impl Clone for FetchStreamOutcome
impl Clone for FetchStreamOutcome
Source§fn clone(&self) -> FetchStreamOutcome
fn clone(&self) -> FetchStreamOutcome
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 Freeze for FetchStreamOutcome
impl RefUnwindSafe for FetchStreamOutcome
impl Send for FetchStreamOutcome
impl Sync for FetchStreamOutcome
impl Unpin for FetchStreamOutcome
impl UnsafeUnpin for FetchStreamOutcome
impl UnwindSafe for FetchStreamOutcome
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