pub struct RampRate {
pub negative_reactive_power_kv_ar_per_min: Option<f32>,
pub negative_real_power_kw_per_min: Option<f32>,
pub positive_reactive_power_kv_ar_per_min: Option<f32>,
pub positive_real_power_kw_per_min: Option<f32>,
}
Expand description
Grid connect mode kind
Fields§
§negative_reactive_power_kv_ar_per_min: Option<f32>
MISSING DOCUMENTATION!!!
negative_real_power_kw_per_min: Option<f32>
MISSING DOCUMENTATION!!!
positive_reactive_power_kv_ar_per_min: Option<f32>
MISSING DOCUMENTATION!!!
positive_real_power_kw_per_min: Option<f32>
MISSING DOCUMENTATION!!!
Trait Implementations§
Source§impl Message for RampRate
impl Message for RampRate
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
Encodes the message to a buffer. Read more
Source§fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError>
Encodes the message with a length-delimiter to a buffer. Read more
Source§fn decode<B>(buf: B) -> Result<Self, DecodeError>
fn decode<B>(buf: B) -> Result<Self, DecodeError>
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
Decodes an instance of the message from a buffer, and merges it into
self
. Read moreSource§fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError>
Decodes a length-delimited instance of the message from buffer, and
merges it into
self
.impl StructuralPartialEq for RampRate
Auto Trait Implementations§
impl Freeze for RampRate
impl RefUnwindSafe for RampRate
impl Send for RampRate
impl Sync for RampRate
impl Unpin for RampRate
impl UnwindSafe for RampRate
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