stefans-utils 0.12.0

A collection of useful Rust utility functions, types, and traits.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Contains the AsBool trait used for converting a reference of self into a bool.

pub trait AsBool {
    fn as_bool(&self) -> bool;
}

impl<T: AsBool> AsBool for &T {
    fn as_bool(&self) -> bool {
        (*self).as_bool()
    }
}