pub struct MessageDeltaContentImageFileObject {
pub index: i64,
pub type: String,
pub image_file: Option<MessageDeltaContentImageFileObject_ImageFile>,
}
Expand description
References an image File in the content of a message.
Fields§
§index: i64
The index of the content part in the message.
type: String
Always image_file
.
image_file: Option<MessageDeltaContentImageFileObject_ImageFile>
Trait Implementations§
Source§impl Clone for MessageDeltaContentImageFileObject
impl Clone for MessageDeltaContentImageFileObject
Source§fn clone(&self) -> MessageDeltaContentImageFileObject
fn clone(&self) -> MessageDeltaContentImageFileObject
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for MessageDeltaContentImageFileObject
impl Default for MessageDeltaContentImageFileObject
Source§fn default() -> MessageDeltaContentImageFileObject
fn default() -> MessageDeltaContentImageFileObject
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MessageDeltaContentImageFileObject
impl RefUnwindSafe for MessageDeltaContentImageFileObject
impl Send for MessageDeltaContentImageFileObject
impl Sync for MessageDeltaContentImageFileObject
impl Unpin for MessageDeltaContentImageFileObject
impl UnwindSafe for MessageDeltaContentImageFileObject
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