Enum realsense_rust::frame::FrameConstructionError [−][src]
pub enum FrameConstructionError { CouldNotGetWidth(Rs2Exception, String), CouldNotGetHeight(Rs2Exception, String), CouldNotGetStride(Rs2Exception, String), CouldNotGetBitsPerPixel(Rs2Exception, String), CouldNotGetTimestamp(Rs2Exception, String), CouldNotGetTimestampDomain(Rs2Exception, String), CouldNotGetFrameStreamProfile(Rs2Exception, String), CouldNotGetDataSize(Rs2Exception, String), CouldNotGetData(Rs2Exception, String), CouldNotGetPointCount(Rs2Exception, String), }
Expand description
Occurs when a frame type cannot be constructed from the given data.
Variants
CouldNotGetWidth(Rs2Exception, String)
Could not get frame width.
CouldNotGetHeight(Rs2Exception, String)
Could not get frame height.
CouldNotGetStride(Rs2Exception, String)
Could not get the pixel stride.
CouldNotGetBitsPerPixel(Rs2Exception, String)
Could not get the bit count per pixel.
CouldNotGetTimestamp(Rs2Exception, String)
Could not get the frame timestamp.
CouldNotGetTimestampDomain(Rs2Exception, String)
Could not get the frame timestamp’s time domain, e.g. to which clock its time is relative.
CouldNotGetFrameStreamProfile(Rs2Exception, String)
Could not get the stream profile that describes the frame.
CouldNotGetDataSize(Rs2Exception, String)
Could not get the total data size of the frame in bytes.
CouldNotGetData(Rs2Exception, String)
Could not get the data of the frame.
CouldNotGetPointCount(Rs2Exception, String)
Could not get the number of points in a Points frame.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for FrameConstructionError
impl Send for FrameConstructionError
impl Sync for FrameConstructionError
impl Unpin for FrameConstructionError
impl UnwindSafe for FrameConstructionError