pub struct StreamRowOptions {
pub height: Option<f64>,
pub visible: Option<bool>,
pub outline_level: Option<u8>,
pub style_id: Option<u32>,
}Expand description
Options for a streamed row.
Fields§
§height: Option<f64>Custom row height in points.
visible: Option<bool>Row visibility (false = hidden).
outline_level: Option<u8>Outline level (0-7).
style_id: Option<u32>Style ID for the row.
Trait Implementations§
Source§impl Clone for StreamRowOptions
impl Clone for StreamRowOptions
Source§fn clone(&self) -> StreamRowOptions
fn clone(&self) -> StreamRowOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StreamRowOptions
impl Debug for StreamRowOptions
Source§impl Default for StreamRowOptions
impl Default for StreamRowOptions
Source§fn default() -> StreamRowOptions
fn default() -> StreamRowOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for StreamRowOptions
impl RefUnwindSafe for StreamRowOptions
impl Send for StreamRowOptions
impl Sync for StreamRowOptions
impl Unpin for StreamRowOptions
impl UnwindSafe for StreamRowOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more