pub struct QueryImageParams {
pub vendor_id: u16,
pub product_id: u16,
pub software_version: u32,
pub protocols_supported: Vec<DownloadProtocol>,
pub hardware_version: u16,
pub location: String,
pub requestor_can_consent: bool,
pub metadata_for_provider: Vec<u8>,
}Expand description
Parameters for QueryImage command
Fields§
§vendor_id: u16§product_id: u16§software_version: u32§protocols_supported: Vec<DownloadProtocol>§hardware_version: u16§location: String§requestor_can_consent: bool§metadata_for_provider: 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 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