Struct freya::prelude::NetworkImageProps
source · pub struct NetworkImageProps<'a> {
pub theme: Option<NetworkImageThemeWith>,
pub url: Url,
pub fallback: Option<Option<VNode<'a>>>,
pub loading: Option<Option<VNode<'a>>>,
pub alt: Option<String>,
}
Expand description
NetworkImage
component properties.
Fields§
§theme: Option<NetworkImageThemeWith>
Theme override.
url: Url
URL of the image
fallback: Option<Option<VNode<'a>>>
Fallback element
loading: Option<Option<VNode<'a>>>
Loading element
alt: Option<String>
Information about the image.
Implementations§
source§impl<'a> NetworkImageProps<'a>
impl<'a> NetworkImageProps<'a>
sourcepub fn builder() -> NetworkImagePropsBuilder<'a, ((), (), (), (), ())>
pub fn builder() -> NetworkImagePropsBuilder<'a, ((), (), (), (), ())>
Create a builder for building NetworkImageProps
.
On the builder, call .theme(...)
(optional), .url(...)
, .fallback(...)
(optional), .loading(...)
(optional), .alt(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of NetworkImageProps
.
Trait Implementations§
source§impl<'a> Properties for NetworkImageProps<'a>
impl<'a> Properties for NetworkImageProps<'a>
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for NetworkImageProps<'a>
impl<'a> !Send for NetworkImageProps<'a>
impl<'a> !Sync for NetworkImageProps<'a>
impl<'a> Unpin for NetworkImageProps<'a>
impl<'a> !UnwindSafe for NetworkImageProps<'a>
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.