pub struct ImageSet {
pub id: String,
pub index: Option<i32>,
pub total: Option<i32>,
}Fields§
§id: StringImage set ID. Only included when multiple images are sent simultaneously.
index: Option<i32>An index starting from 1, indicating the image number in a set of images sent simultaneously. Only included when multiple images are sent simultaneously. However, it won’t be included if the sender is using LINE 11.15 or earlier for Android.
total: Option<i32>The total number of images sent simultaneously.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ImageSet
impl<'de> Deserialize<'de> for ImageSet
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
impl StructuralPartialEq for ImageSet
Auto Trait Implementations§
impl Freeze for ImageSet
impl RefUnwindSafe for ImageSet
impl Send for ImageSet
impl Sync for ImageSet
impl Unpin for ImageSet
impl UnwindSafe for ImageSet
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