pub struct ProgressBarAttributes {
pub min: Option<f32>,
pub max: Option<f32>,
pub value: BindingExpr,
pub style: Option<ProgressBarStyle>,
}Fields§
§min: Option<f32>§max: Option<f32>§value: BindingExpr§style: Option<ProgressBarStyle>Trait Implementations§
Source§impl Clone for ProgressBarAttributes
impl Clone for ProgressBarAttributes
Source§fn clone(&self) -> ProgressBarAttributes
fn clone(&self) -> ProgressBarAttributes
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 ProgressBarAttributes
impl Debug for ProgressBarAttributes
Source§impl<'de> Deserialize<'de> for ProgressBarAttributes
impl<'de> Deserialize<'de> for ProgressBarAttributes
Source§fn 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
Source§impl PartialEq for ProgressBarAttributes
impl PartialEq for ProgressBarAttributes
Source§impl Serialize for ProgressBarAttributes
impl Serialize for ProgressBarAttributes
impl StructuralPartialEq for ProgressBarAttributes
Auto Trait Implementations§
impl Freeze for ProgressBarAttributes
impl RefUnwindSafe for ProgressBarAttributes
impl Send for ProgressBarAttributes
impl Sync for ProgressBarAttributes
impl Unpin for ProgressBarAttributes
impl UnwindSafe for ProgressBarAttributes
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