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