pub struct FormStream {
pub name: String,
pub object_type: FormObjectType,
pub stream_kind: StreamKind,
pub data: Vec<u8>,
}Expand description
Raw binary stream from a form/report.
Fields§
§name: String§object_type: FormObjectType§stream_kind: StreamKind§data: Vec<u8>Trait Implementations§
Source§impl Clone for FormStream
impl Clone for FormStream
Source§fn clone(&self) -> FormStream
fn clone(&self) -> FormStream
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for FormStream
impl RefUnwindSafe for FormStream
impl Send for FormStream
impl Sync for FormStream
impl Unpin for FormStream
impl UnsafeUnpin for FormStream
impl UnwindSafe for FormStream
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