pub struct EdgeProperties {
pub detail: String,
pub valid_from: String,
pub valid_to: String,
pub feedback_score: f64,
pub feedback_count: u64,
pub feedback_last_ts_ms: Option<u64>,
}Fields§
§detail: String§valid_from: String§valid_to: String§feedback_score: f64§feedback_count: u64§feedback_last_ts_ms: Option<u64>Trait Implementations§
Source§impl Clone for EdgeProperties
impl Clone for EdgeProperties
Source§fn clone(&self) -> EdgeProperties
fn clone(&self) -> EdgeProperties
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 EdgeProperties
impl Debug for EdgeProperties
Source§impl Default for EdgeProperties
impl Default for EdgeProperties
Source§fn default() -> EdgeProperties
fn default() -> EdgeProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EdgeProperties
impl<'de> Deserialize<'de> for EdgeProperties
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
Auto Trait Implementations§
impl Freeze for EdgeProperties
impl RefUnwindSafe for EdgeProperties
impl Send for EdgeProperties
impl Sync for EdgeProperties
impl Unpin for EdgeProperties
impl UnsafeUnpin for EdgeProperties
impl UnwindSafe for EdgeProperties
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