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