pub trait Tweakable: Sized + Send + Clone + 'static {
    // Required method
    fn parse(x: &str) -> Option<Self>;
}

Required Methods§

source

fn parse(x: &str) -> Option<Self>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Tweakable for &'static str

source§

fn parse(x: &str) -> Option<Self>

source§

impl Tweakable for bool

source§

fn parse(x: &str) -> Option<Self>

source§

impl Tweakable for char

source§

fn parse(x: &str) -> Option<Self>

source§

impl Tweakable for f32

source§

impl Tweakable for f64

source§

impl Tweakable for i8

source§

impl Tweakable for i16

source§

impl Tweakable for i32

source§

impl Tweakable for i64

source§

impl Tweakable for i128

source§

impl Tweakable for isize

source§

impl Tweakable for u8

source§

impl Tweakable for u16

source§

impl Tweakable for u32

source§

impl Tweakable for u64

source§

impl Tweakable for u128

source§

impl Tweakable for ()

source§

fn parse(_x: &str) -> Option<Self>

source§

impl Tweakable for usize

Implementors§