pub struct ResponseQueryImageData {
pub id: ImageId,
pub width: usize,
pub height: usize,
pub depth: usize,
pub format: ImageFormat,
pub bytes: Vec<u8>,
}
Fields§
§id: ImageId
§width: usize
§height: usize
§depth: usize
§format: ImageFormat
§bytes: Vec<u8>
Trait Implementations§
source§impl Debug for ResponseQueryImageData
impl Debug for ResponseQueryImageData
source§impl<'de> Deserialize<'de> for ResponseQueryImageData
impl<'de> Deserialize<'de> for ResponseQueryImageData
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ResponseQueryImageData
impl Send for ResponseQueryImageData
impl Sync for ResponseQueryImageData
impl Unpin for ResponseQueryImageData
impl UnwindSafe for ResponseQueryImageData
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