pub struct AttributeBooleanValue {
pub value: Option<bool>,
}
Expand description
Describes a value for a resource attribute that is a Boolean value.
Fields§
§value: Option<bool>
The attribute value. The valid values are true
or false
.
Trait Implementations§
Source§impl Clone for AttributeBooleanValue
impl Clone for AttributeBooleanValue
Source§fn clone(&self) -> AttributeBooleanValue
fn clone(&self) -> AttributeBooleanValue
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 AttributeBooleanValue
impl Debug for AttributeBooleanValue
Source§impl Default for AttributeBooleanValue
impl Default for AttributeBooleanValue
Source§fn default() -> AttributeBooleanValue
fn default() -> AttributeBooleanValue
Returns the “default value” for a type. Read more
Source§impl PartialEq for AttributeBooleanValue
impl PartialEq for AttributeBooleanValue
impl StructuralPartialEq for AttributeBooleanValue
Auto Trait Implementations§
impl Freeze for AttributeBooleanValue
impl RefUnwindSafe for AttributeBooleanValue
impl Send for AttributeBooleanValue
impl Sync for AttributeBooleanValue
impl Unpin for AttributeBooleanValue
impl UnwindSafe for AttributeBooleanValue
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