#[repr(C)]pub struct PhotoPickerInterruptArgs {
pub id: u32,
pub request_id: u64,
pub status: String,
pub message: Option<String>,
pub photos: Vec<PhotoPickerAssetArgs>,
}Expand description
Native photo picker completion payload.
Fields§
§id: u32§request_id: u64§status: String§message: Option<String>§photos: Vec<PhotoPickerAssetArgs>Trait Implementations§
Source§impl Clone for PhotoPickerInterruptArgs
impl Clone for PhotoPickerInterruptArgs
Source§impl<'de> Deserialize<'de> for PhotoPickerInterruptArgs
impl<'de> Deserialize<'de> for PhotoPickerInterruptArgs
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 Freeze for PhotoPickerInterruptArgs
impl RefUnwindSafe for PhotoPickerInterruptArgs
impl Send for PhotoPickerInterruptArgs
impl Sync for PhotoPickerInterruptArgs
impl Unpin for PhotoPickerInterruptArgs
impl UnsafeUnpin for PhotoPickerInterruptArgs
impl UnwindSafe for PhotoPickerInterruptArgs
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