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