pub struct ExtractInput<'a> {
pub file: &'a FileDescriptor,
pub content: &'a [u8],
}Expand description
Immutable source input supplied to a focused extractor.
Fields§
§file: &'a FileDescriptorSelected file metadata.
content: &'a [u8]Bounded source content.
Trait Implementations§
Source§impl<'a> Clone for ExtractInput<'a>
impl<'a> Clone for ExtractInput<'a>
Source§fn clone(&self) -> ExtractInput<'a>
fn clone(&self) -> ExtractInput<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for ExtractInput<'a>
impl<'a> RefUnwindSafe for ExtractInput<'a>
impl<'a> Send for ExtractInput<'a>
impl<'a> Sync for ExtractInput<'a>
impl<'a> Unpin for ExtractInput<'a>
impl<'a> UnsafeUnpin for ExtractInput<'a>
impl<'a> UnwindSafe for ExtractInput<'a>
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