pub struct Branch4<P0, P1, P2, P3, V> where
    P0: Scalar,
    P1: Scalar,
    P2: Scalar,
    P3: Scalar,
    V: Value
{ pub pivots: (Option<Vec<P0>>, Option<Vec<P1>>, Option<Vec<P2>>, Option<Vec<P3>>), pub intersections: Vec<(u32, Arc<Node4<P0, P1, P2, P3, V>>)>, pub nodes: Vec<Arc<Node4<P0, P1, P2, P3, V>>>, }

Fields

pivots: (Option<Vec<P0>>, Option<Vec<P1>>, Option<Vec<P2>>, Option<Vec<P3>>)intersections: Vec<(u32, Arc<Node4<P0, P1, P2, P3, V>>)>nodes: Vec<Arc<Node4<P0, P1, P2, P3, V>>>

Implementations

Trait Implementations

Return the number of bytes that the serialization would require.

Return how many bytes from buf would be required to deserialize Self.

Return how many bytes from buf would be required to deserialize Self, where if there are not enough bytes in buf to know how many bytes would be required, you will receive None or otherwise Some(nbytes). Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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.