pub struct ApparentPower { /* private fields */ }Expand description
An absolute apparent power rating with an explicit unit.
Implementations§
Source§impl ApparentPower
impl ApparentPower
pub const fn from_volt_amperes(value: f64) -> Self
pub const fn from_megavolt_amperes(value: f64) -> Self
pub const fn value(self) -> f64
pub const fn unit(self) -> ApparentPowerUnit
Trait Implementations§
Source§impl Clone for ApparentPower
impl Clone for ApparentPower
Source§fn clone(&self) -> ApparentPower
fn clone(&self) -> ApparentPower
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ApparentPower
Source§impl Debug for ApparentPower
impl Debug for ApparentPower
Source§impl<'de> Deserialize<'de> for ApparentPower
impl<'de> Deserialize<'de> for ApparentPower
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 JsonSchema for ApparentPower
impl JsonSchema for ApparentPower
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for ApparentPower
impl PartialEq for ApparentPower
Source§fn eq(&self, other: &ApparentPower) -> bool
fn eq(&self, other: &ApparentPower) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ApparentPower
impl Serialize for ApparentPower
impl StructuralPartialEq for ApparentPower
Auto Trait Implementations§
impl Freeze for ApparentPower
impl RefUnwindSafe for ApparentPower
impl Send for ApparentPower
impl Sync for ApparentPower
impl Unpin for ApparentPower
impl UnsafeUnpin for ApparentPower
impl UnwindSafe for ApparentPower
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