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