pub struct RainfallResponse {
pub code: NeaSuccessCode,
pub error_msg: String,
pub data: RainfallData,
}Fields§
§code: NeaSuccessCodeResponse status code (0 for success)
error_msg: StringError message (empty string for success)
data: RainfallDataTrait Implementations§
Source§impl Clone for RainfallResponse
impl Clone for RainfallResponse
Source§fn clone(&self) -> RainfallResponse
fn clone(&self) -> RainfallResponse
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 moreSource§impl Debug for RainfallResponse
impl Debug for RainfallResponse
Source§impl<'de> Deserialize<'de> for RainfallResponse
impl<'de> Deserialize<'de> for RainfallResponse
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 RainfallResponse
impl PartialEq for RainfallResponse
Source§impl Serialize for RainfallResponse
impl Serialize for RainfallResponse
impl StructuralPartialEq for RainfallResponse
Auto Trait Implementations§
impl Freeze for RainfallResponse
impl RefUnwindSafe for RainfallResponse
impl Send for RainfallResponse
impl Sync for RainfallResponse
impl Unpin for RainfallResponse
impl UnsafeUnpin for RainfallResponse
impl UnwindSafe for RainfallResponse
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