pub trait HandleConstraints: ManagedVecItem + TryStaticCast + Debug + Clone + From<RawHandle> + PartialEq + PartialEq<RawHandle> {
    fn new(handle: RawHandle) -> Self;
    fn to_be_bytes(&self) -> [u8; 4];
    fn get_raw_handle(&self) -> RawHandle;

    fn cast_or_signal_error<E: ErrorApi, U: TryStaticCast>(self) -> U { ... }
}

Required Methods§

Provided Methods§

Implementations on Foreign Types§

Implementors§