pub trait FromSegmentFrame: Sized {
    fn from_segment_frame(frame: &Frame) -> Result<Self, CommandError>;
}
Expand description

Used to create a value from a Segment frame

Required Methods

Creates a new value from Segment frame

Implementations on Foreign Types

Implementors