[][src]Struct slog_gelf::KeyValueList

pub struct KeyValueList(pub Vec<(&'static str, String)>);

Trait Implementations

impl Serializer for KeyValueList[src]

fn emit_usize(&mut self, key: &'static str, val: usize) -> Result<(), Error>[src]

Emit usize

fn emit_isize(&mut self, key: &'static str, val: isize) -> Result<(), Error>[src]

Emit isize

fn emit_bool(&mut self, key: &'static str, val: bool) -> Result<(), Error>[src]

Emit bool

fn emit_char(&mut self, key: &'static str, val: char) -> Result<(), Error>[src]

Emit char

fn emit_u8(&mut self, key: &'static str, val: u8) -> Result<(), Error>[src]

Emit u8

fn emit_i8(&mut self, key: &'static str, val: i8) -> Result<(), Error>[src]

Emit i8

fn emit_u16(&mut self, key: &'static str, val: u16) -> Result<(), Error>[src]

Emit u16

fn emit_i16(&mut self, key: &'static str, val: i16) -> Result<(), Error>[src]

Emit i16

fn emit_u32(&mut self, key: &'static str, val: u32) -> Result<(), Error>[src]

Emit u32

fn emit_i32(&mut self, key: &'static str, val: i32) -> Result<(), Error>[src]

Emit i32

fn emit_f32(&mut self, key: &'static str, val: f32) -> Result<(), Error>[src]

Emit f32

fn emit_u64(&mut self, key: &'static str, val: u64) -> Result<(), Error>[src]

Emit u64

fn emit_i64(&mut self, key: &'static str, val: i64) -> Result<(), Error>[src]

Emit i64

fn emit_f64(&mut self, key: &'static str, val: f64) -> Result<(), Error>[src]

Emit f64

fn emit_u128(&mut self, key: &'static str, val: u128) -> Result<(), Error>[src]

Emit u128

fn emit_i128(&mut self, key: &'static str, val: i128) -> Result<(), Error>[src]

Emit i128

fn emit_str(&mut self, key: &'static str, val: &str) -> Result<(), Error>[src]

Emit &str

fn emit_unit(&mut self, key: &'static str) -> Result<(), Error>[src]

Emit ()

fn emit_none(&mut self, key: &'static str) -> Result<(), Error>[src]

Emit None

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]