#[repr(C)]
pub struct YIdRangeSeq { pub len: c_int, pub seq: *mut YIdRange, }
Expand description

Fixed-length sequence of ID ranges. Each range is a pair of [start, end) values, describing the range of items identified by clock values, that this range refers to.

Fields

len: c_int

Number of ranges stored in this sequence.

seq: *mut YIdRange

Array (length is stored in len field) or ranges. Each range is a pair of [start, end) values, describing continuous collection of items produced by the same client, identified by clock values, that this range refers to.

Trait Implementations

Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.