pub struct PendingObject {
pub event_position: EventPosition,
pub text: String,
pub file_name: String,
pub media_type: String,
pub bytes: Vec<u8>,
}Fields§
§event_position: EventPosition§text: String§file_name: String§media_type: String§bytes: Vec<u8>Trait Implementations§
Source§impl Clone for PendingObject
impl Clone for PendingObject
Source§fn clone(&self) -> PendingObject
fn clone(&self) -> PendingObject
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PendingObject
impl Debug for PendingObject
impl Eq for PendingObject
Source§impl PartialEq for PendingObject
impl PartialEq for PendingObject
impl StructuralPartialEq for PendingObject
Auto Trait Implementations§
impl Freeze for PendingObject
impl RefUnwindSafe for PendingObject
impl Send for PendingObject
impl Sync for PendingObject
impl Unpin for PendingObject
impl UnsafeUnpin for PendingObject
impl UnwindSafe for PendingObject
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