Struct sanitizer::IntSanitizer[][src]

pub struct IntSanitizer<T: PartialOrd + Copy>(_);

The IntSanitizer structure is a wrapper over a type T which is to be sanitized, T can be anything that’s PartialOrd

Example

use sanitizer::prelude::*;

let mut instance = IntSanitizer::from(5);
instance
	.clamp(9, 15);
assert_eq!(instance.get(), 9);

Implementations

impl<T: PartialOrd + Copy> IntSanitizer<T>[src]

pub fn get(self) -> T[src]

Consume the struct and return T

pub fn clamp(&mut self, min: T, max: T) -> &mut Self[src]

Sets the int equal to the max value if it exceds the provided max value provided in the function argument

pub fn call<F>(&mut self, func: F) -> &mut Self where
    F: FnOnce(T) -> T, 
[src]

Call a custom function for sanitizing the value of type T

Trait Implementations

impl From<i16> for IntSanitizer<i16>[src]

impl From<i32> for IntSanitizer<i32>[src]

impl From<i64> for IntSanitizer<i64>[src]

impl From<i8> for IntSanitizer<i8>[src]

impl From<isize> for IntSanitizer<isize>[src]

impl From<u16> for IntSanitizer<u16>[src]

impl From<u32> for IntSanitizer<u32>[src]

impl From<u64> for IntSanitizer<u64>[src]

impl From<u8> for IntSanitizer<u8>[src]

impl From<usize> for IntSanitizer<usize>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for IntSanitizer<T> where
    T: RefUnwindSafe

impl<T> Send for IntSanitizer<T> where
    T: Send

impl<T> Sync for IntSanitizer<T> where
    T: Sync

impl<T> Unpin for IntSanitizer<T> where
    T: Unpin

impl<T> UnwindSafe for IntSanitizer<T> where
    T: 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, 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.