pub struct ByteScanResult {
pub has_ansi_escapes: bool,
pub has_control_chars: bool,
pub has_bidi_controls: bool,
pub has_zero_width: bool,
pub has_invalid_utf8: bool,
pub details: Vec<ByteFinding>,
}Expand description
Control character patterns for paste-time byte scanning.
Fields§
§has_ansi_escapes: bool§has_control_chars: bool§has_bidi_controls: bool§has_zero_width: bool§has_invalid_utf8: bool§details: Vec<ByteFinding>Auto Trait Implementations§
impl Freeze for ByteScanResult
impl RefUnwindSafe for ByteScanResult
impl Send for ByteScanResult
impl Sync for ByteScanResult
impl Unpin for ByteScanResult
impl UnwindSafe for ByteScanResult
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