pub struct ExtractedString {
pub offset: usize,
pub encoding: StringEncoding,
pub text: String,
}Fields§
§offset: usize§encoding: StringEncoding§text: StringTrait Implementations§
Source§impl Clone for ExtractedString
impl Clone for ExtractedString
Source§fn clone(&self) -> ExtractedString
fn clone(&self) -> ExtractedString
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 ExtractedString
impl RefUnwindSafe for ExtractedString
impl Send for ExtractedString
impl Sync for ExtractedString
impl Unpin for ExtractedString
impl UnsafeUnpin for ExtractedString
impl UnwindSafe for ExtractedString
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