Struct server::storage::bstar::KeyAddr [] [src]

pub struct KeyAddr<T: PartialOrd + KnownSize + Debug> {
    pub key: T,
    pub addr: u64,
}

Fields

key
addr

Methods

impl<T: PartialOrd + KnownSize + Debug> KeyAddr<T>

fn new(key: T, addr: u64) -> KeyAddr<T>

returns a new KeyAddr object

Trait Implementations

impl<T: PartialOrd + KnownSize + Debug> PartialOrd for KeyAddr<T>

fn partial_cmp(&self, other: &Self) -> Option<Ordering>

fn lt(&self, other: &Rhs) -> bool

fn le(&self, other: &Rhs) -> bool

fn gt(&self, other: &Rhs) -> bool

fn ge(&self, other: &Rhs) -> bool

impl<T: PartialOrd + KnownSize + Debug> PartialEq for KeyAddr<T>

fn eq(&self, other: &Self) -> bool

fn ne(&self, other: &Rhs) -> bool

impl<T: KnownSize + PartialOrd + Debug> KnownSize for KeyAddr<T>

fn size() -> u64

fn read(file: &mut File, addr: Option<u64>) -> Result<KeyAddr<T>>

fn write(&self, file: &mut File, addr: Option<u64>) -> Result<()>

fn write_default(file: &mut File, addr: Option<u64>) -> Result<()>

Derived Implementations

impl<T: Clone + PartialOrd + KnownSize + Debug> Clone for KeyAddr<T>

fn clone(&self) -> KeyAddr<T>

fn clone_from(&mut self, source: &Self)

impl<T: Encodable + PartialOrd + KnownSize + Debug> Encodable for KeyAddr<T>

fn encode<__S: Encoder>(&self, __arg_0: &mut __S) -> Result<(), __S::Error>

impl<T: Decodable + PartialOrd + KnownSize + Debug> Decodable for KeyAddr<T>

fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<KeyAddr<T>, __D::Error>

impl<T: Debug + PartialOrd + KnownSize + Debug> Debug for KeyAddr<T>

fn fmt(&self, __arg_0: &mut Formatter) -> Result