Struct robotics_signals::sensors::image::ImageCIF4BPP
source · [−]#[repr(C)]pub struct ImageCIF4BPP {
pub header: HeaderFixedSize,
pub width: u32,
pub height: u32,
pub encoding: Encoding,
pub stride: u32,
pub data: [u8; 337920],
}
Fields
header: HeaderFixedSize
width: u32
height: u32
encoding: Encoding
stride: u32
data: [u8; 337920]
Implementations
sourceimpl ImageCIF4BPP
impl ImageCIF4BPP
sourcepub fn create_topic_with_name(
participant: &DdsParticipant,
name: &str,
maybe_qos: Option<DdsQos>,
maybe_listener: Option<DdsListener>
) -> Result<DdsTopic<Self>, DDSError>
pub fn create_topic_with_name(
participant: &DdsParticipant,
name: &str,
maybe_qos: Option<DdsQos>,
maybe_listener: Option<DdsListener>
) -> Result<DdsTopic<Self>, DDSError>
Create a topic using of this Type specifying the topic name
Arguments
participant
- The participant handle onto which this topic should be createdname
- The name of the topicmaybe_qos
- A QoS structure for this topic. The Qos is optionalmaybe_listener
- A listener to use on this topic. The listener is optional
sourcepub fn create_topic(
participant: &DdsParticipant,
maybe_topic_prefix: Option<&str>,
maybe_qos: Option<DdsQos>,
maybe_listener: Option<DdsListener>
) -> Result<DdsTopic<Self>, DDSError>
pub fn create_topic(
participant: &DdsParticipant,
maybe_topic_prefix: Option<&str>,
maybe_qos: Option<DdsQos>,
maybe_listener: Option<DdsListener>
) -> Result<DdsTopic<Self>, DDSError>
Create a topic of this Type using the default topic name. The default topic name is provided by the Self::topic_name function.
Arguments
participant
- The participant handle onto which this topic should be createdmaybe_topic_prefix
- An additional prefix to be added to the topic name. This can be Nonemaybe_qos
- A QoS structure for this topic. The Qos is optionalmaybe_listener
- A listener to use on this topic. The listener is optional
sourcepub fn create_sample_buffer(len: usize) -> SampleBuffer<ImageCIF4BPP>
pub fn create_sample_buffer(len: usize) -> SampleBuffer<ImageCIF4BPP>
Create a sample buffer for storing an array of samples You can pass the sample buffer into a read to read multiple samples. Multiple samples are useful when you have one or more keys in your topic structure. Each value of the key will result in the storage of another sample.
sourceimpl ImageCIF4BPP
impl ImageCIF4BPP
pub fn set_resolution(&mut self)
pub fn initialize(&mut self)
Trait Implementations
sourceimpl<'de> Deserialize<'de> for ImageCIF4BPP
impl<'de> Deserialize<'de> for ImageCIF4BPP
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Serialize for ImageCIF4BPP
impl Serialize for ImageCIF4BPP
Auto Trait Implementations
impl RefUnwindSafe for ImageCIF4BPP
impl Send for ImageCIF4BPP
impl Sync for ImageCIF4BPP
impl Unpin for ImageCIF4BPP
impl UnwindSafe for ImageCIF4BPP
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more