Struct x_lint::content::ContentContext[][src]

pub struct ContentContext<'l> { /* fields omitted */ }

Implementations

impl<'l> ContentContext<'l>[src]

pub const BINARY_FILE_CUTOFF: usize[src]

The number of bytes that will be searched for null bytes in a file to figure out if it is binary.

The value is the same as Git’s.

pub fn file_ctx(&self) -> &FilePathContext<'l>[src]

Returns the file context.

pub fn content(&self) -> Option<&str>[src]

Returns the content, or None if this is a non-UTF-8 file.

pub fn content_bytes(&self) -> &[u8][src]

Returns the raw bytes for the content.

pub fn is_binary(&self) -> bool[src]

Returns true if this is a binary file.

Trait Implementations

impl<'l> Debug for ContentContext<'l>[src]

Auto Trait Implementations

impl<'l> RefUnwindSafe for ContentContext<'l>

impl<'l> Send for ContentContext<'l>

impl<'l> Sync for ContentContext<'l>

impl<'l> Unpin for ContentContext<'l>

impl<'l> UnwindSafe for ContentContext<'l>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> SafeBorrow<T> for T where
    T: ?Sized

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.