RotateRight

Trait RotateRight 

Source
pub trait RotateRight {
    // Required method
    fn rotate_right(self, n: u32) -> Self;
}

Required Methods§

Source

fn rotate_right(self, n: u32) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl RotateRight for u32

Source§

fn rotate_right(self, n: u32) -> Self

Source§

impl RotateRight for u64

Source§

fn rotate_right(self, n: u32) -> Self

Implementors§