pub struct SearchRecordStyle {
pub terminator: RecordTerminator,
pub color: ColorChoice,
pub path_separator: Option<u8>,
}Fields§
§terminator: RecordTerminator§color: ColorChoice§path_separator: Option<u8>Implementations§
Source§impl SearchRecordStyle
impl SearchRecordStyle
pub fn should_color(&self) -> bool
Trait Implementations§
Source§impl Clone for SearchRecordStyle
impl Clone for SearchRecordStyle
Source§fn clone(&self) -> SearchRecordStyle
fn clone(&self) -> SearchRecordStyle
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 SearchRecordStyle
impl Debug for SearchRecordStyle
Source§impl Default for SearchRecordStyle
impl Default for SearchRecordStyle
Source§impl PartialEq for SearchRecordStyle
impl PartialEq for SearchRecordStyle
Source§fn eq(&self, other: &SearchRecordStyle) -> bool
fn eq(&self, other: &SearchRecordStyle) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SearchRecordStyle
impl Eq for SearchRecordStyle
impl StructuralPartialEq for SearchRecordStyle
Auto Trait Implementations§
impl Freeze for SearchRecordStyle
impl RefUnwindSafe for SearchRecordStyle
impl Send for SearchRecordStyle
impl Sync for SearchRecordStyle
impl Unpin for SearchRecordStyle
impl UnsafeUnpin for SearchRecordStyle
impl UnwindSafe for SearchRecordStyle
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more