pub struct QueryImageParams {
pub vendor_id: u16,
pub product_id: u16,
pub software_version: u32,
pub protocols_supported: Vec<DownloadProtocol>,
pub hardware_version: Option<u16>,
pub location: Option<String>,
pub requestor_can_consent: Option<bool>,
pub metadata_for_provider: Option<Vec<u8>>,
}Expand description
Parameters for QueryImage command
Fields§
§vendor_id: u16§product_id: u16§software_version: u32§protocols_supported: Vec<DownloadProtocol>§hardware_version: Option<u16>§location: Option<String>§requestor_can_consent: Option<bool>§metadata_for_provider: Option<Vec<u8>>Auto Trait Implementations§
impl Freeze for QueryImageParams
impl RefUnwindSafe for QueryImageParams
impl Send for QueryImageParams
impl Sync for QueryImageParams
impl Unpin for QueryImageParams
impl UnsafeUnpin for QueryImageParams
impl UnwindSafe for QueryImageParams
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