pub struct ScanCreationResult {
pub scan_id: String,
pub upload_uri: Option<String>,
pub details_uri: Option<String>,
pub start_uri: Option<String>,
pub cancel_uri: Option<String>,
pub expected_segments: Option<u32>,
}Expand description
Result of scan creation containing scan ID and _links for operations
Fields§
§scan_id: StringThe scan ID
upload_uri: Option<String>Upload URI from _links.upload.href
details_uri: Option<String>Details URI from _links.details.href
start_uri: Option<String>Start URI from _links.start.href
cancel_uri: Option<String>Cancel URI from _links.cancel.href
expected_segments: Option<u32>Expected number of upload segments
Trait Implementations§
Source§impl Clone for ScanCreationResult
impl Clone for ScanCreationResult
Source§fn clone(&self) -> ScanCreationResult
fn clone(&self) -> ScanCreationResult
Returns a duplicate of the value. Read more
1.0.0 · 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 ScanCreationResult
impl RefUnwindSafe for ScanCreationResult
impl Send for ScanCreationResult
impl Sync for ScanCreationResult
impl Unpin for ScanCreationResult
impl UnwindSafe for ScanCreationResult
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