Struct freya::components::CanvasProps  
pub struct CanvasProps { /* private fields */ }Expand description
Canvas component properties.
Implementations§
§impl CanvasProps
 
impl CanvasProps
pub fn builder() -> CanvasPropsBuilder<((), (), (), ())>
pub fn builder() -> CanvasPropsBuilder<((), (), (), ())>
Create a builder for building CanvasProps.
On the builder, call .width(...)(optional), .height(...)(optional), .background(...)(optional), .canvas(...) to set the values of the fields.
Finally, call .build() to create the instance of CanvasProps.
Trait Implementations§
§impl PartialEq<CanvasProps> for CanvasProps
 
impl PartialEq<CanvasProps> for CanvasProps
§fn eq(&self, other: &CanvasProps) -> bool
 
fn eq(&self, other: &CanvasProps) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.§impl Properties for CanvasProps
 
impl Properties for CanvasProps
§type Builder = CanvasPropsBuilder<((), (), (), ())>
 
type Builder = CanvasPropsBuilder<((), (), (), ())>
The type of the builder for this component.
Used to create “in-progress” versions of the props.
§fn builder() -> <CanvasProps as Properties>::Builder
 
fn builder() -> <CanvasProps as Properties>::Builder
Create a builder for this component.
§unsafe fn memoize(&self, other: &CanvasProps) -> bool
 
unsafe fn memoize(&self, other: &CanvasProps) -> bool
Memoization can only happen if the props are valid for the ’static lifetime Read more
impl StructuralPartialEq for CanvasProps
Auto Trait Implementations§
impl !RefUnwindSafe for CanvasProps
impl Send for CanvasProps
impl Sync for CanvasProps
impl Unpin for CanvasProps
impl !UnwindSafe for CanvasProps
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