Struct tev_client::PacketUpdateImage[][src]

pub struct PacketUpdateImage<'a, S: AsRef<str> + 'a> {
    pub image_name: &'a str,
    pub grab_focus: bool,
    pub channel_names: &'a [S],
    pub channel_offsets: &'a [u64],
    pub channel_strides: &'a [u64],
    pub x: u32,
    pub y: u32,
    pub width: u32,
    pub height: u32,
    pub data: &'a [f32],
}

Update part of an existing image with new pixel data.

Fields

image_name: &'a strgrab_focus: boolchannel_names: &'a [S]channel_offsets: &'a [u64]channel_strides: &'a [u64]x: u32y: u32width: u32height: u32data: &'a [f32]

Trait Implementations

impl<'a, S: Debug + AsRef<str> + 'a> Debug for PacketUpdateImage<'a, S>[src]

Auto Trait Implementations

impl<'a, S> RefUnwindSafe for PacketUpdateImage<'a, S> where
    S: RefUnwindSafe

impl<'a, S> Send for PacketUpdateImage<'a, S> where
    S: Sync

impl<'a, S> Sync for PacketUpdateImage<'a, S> where
    S: Sync

impl<'a, S> Unpin for PacketUpdateImage<'a, S>

impl<'a, S> UnwindSafe for PacketUpdateImage<'a, S> where
    S: RefUnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.