pub struct RehashReleaseResponse {
pub ok: bool,
pub results: Map<String, Value>,
pub slug: String,
pub version: String,
}Expand description
RehashReleaseResponse
JSON schema
{
"type": "object",
"required": [
"ok",
"results",
"slug",
"version"
],
"properties": {
"ok": {
"type": "boolean"
},
"results": {
"type": "object"
},
"slug": {
"type": "string"
},
"version": {
"type": "string"
}
}
}Fields§
§ok: bool§results: Map<String, Value>§slug: String§version: StringImplementations§
Source§impl RehashReleaseResponse
impl RehashReleaseResponse
pub fn builder() -> RehashReleaseResponse
Trait Implementations§
Source§impl Clone for RehashReleaseResponse
impl Clone for RehashReleaseResponse
Source§fn clone(&self) -> RehashReleaseResponse
fn clone(&self) -> RehashReleaseResponse
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 RehashReleaseResponse
impl Debug for RehashReleaseResponse
Source§impl<'de> Deserialize<'de> for RehashReleaseResponse
impl<'de> Deserialize<'de> for RehashReleaseResponse
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 From<&RehashReleaseResponse> for RehashReleaseResponse
impl From<&RehashReleaseResponse> for RehashReleaseResponse
Source§fn from(value: &RehashReleaseResponse) -> Self
fn from(value: &RehashReleaseResponse) -> Self
Converts to this type from the input type.
Source§impl From<RehashReleaseResponse> for RehashReleaseResponse
impl From<RehashReleaseResponse> for RehashReleaseResponse
Source§fn from(value: RehashReleaseResponse) -> Self
fn from(value: RehashReleaseResponse) -> Self
Converts to this type from the input type.
Source§impl Serialize for RehashReleaseResponse
impl Serialize for RehashReleaseResponse
Source§impl TryFrom<RehashReleaseResponse> for RehashReleaseResponse
impl TryFrom<RehashReleaseResponse> for RehashReleaseResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: RehashReleaseResponse) -> Result<Self, ConversionError>
fn try_from(value: RehashReleaseResponse) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for RehashReleaseResponse
impl RefUnwindSafe for RehashReleaseResponse
impl Send for RehashReleaseResponse
impl Sync for RehashReleaseResponse
impl Unpin for RehashReleaseResponse
impl UnsafeUnpin for RehashReleaseResponse
impl UnwindSafe for RehashReleaseResponse
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