Trait netlink_rust::ConvertFrom[][src]

pub trait ConvertFrom<T: Sized> where
    Self: Sized
{ fn convert_from(value: T) -> Option<Self>; }

A trait for converting a value from one type to another. Any failure in converting will return None.

Required Methods

Implementors