[][src]Struct actions_core::Log

pub struct Log<'f, M> {
    pub message: M,
    pub file: Option<&'f str>,
    pub line: Option<usize>,
    pub col: Option<usize>,
}

Fields

message: Mfile: Option<&'f str>line: Option<usize>col: Option<usize>

Methods

impl<'f, M> Log<'f, M>[src]

pub fn message(message: M) -> Self[src]

Trait Implementations

impl<'f, M: Debug> Debug for Log<'f, M>[src]

impl<'f, M: Default> Default for Log<'f, M>[src]

impl<'f, M> Display for Log<'f, M> where
    M: ToString
[src]

Auto Trait Implementations

impl<'f, M> RefUnwindSafe for Log<'f, M> where
    M: RefUnwindSafe

impl<'f, M> Send for Log<'f, M> where
    M: Send

impl<'f, M> Sync for Log<'f, M> where
    M: Sync

impl<'f, M> Unpin for Log<'f, M> where
    M: Unpin

impl<'f, M> UnwindSafe for Log<'f, M> where
    M: UnwindSafe

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> ToString for T where
    T: Display + ?Sized
[src]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,