1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
use webcore::value::Reference;

/// A trait to check whenever a given [Reference](struct.Reference.html) is of a certain type.
pub trait InstanceOf {
    /// Checks whenever a given [Reference](struct.Reference.html) if of type `Self`.
    fn instance_of( reference: &Reference ) -> bool;
}

impl InstanceOf for Reference {
    #[inline]
    fn instance_of( _: &Reference ) -> bool {
        true
    }
}