pub struct EulaResponse {
pub content: String,
pub version: String,
}Expand description
EULA content response
JSON schema
{
"description": "EULA content response",
"type": "object",
"required": [
"content",
"version"
],
"properties": {
"content": {
"type": "string"
},
"version": {
"type": "string"
}
}
}Fields§
§content: String§version: StringTrait Implementations§
Source§impl Clone for EulaResponse
impl Clone for EulaResponse
Source§fn clone(&self) -> EulaResponse
fn clone(&self) -> EulaResponse
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 EulaResponse
impl Debug for EulaResponse
Source§impl<'de> Deserialize<'de> for EulaResponse
impl<'de> Deserialize<'de> for EulaResponse
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
Auto Trait Implementations§
impl Freeze for EulaResponse
impl RefUnwindSafe for EulaResponse
impl Send for EulaResponse
impl Sync for EulaResponse
impl Unpin for EulaResponse
impl UnsafeUnpin for EulaResponse
impl UnwindSafe for EulaResponse
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