pub struct PublicInviteExecuteResponse {
pub door_auto_close_duration: Option<i64>,
pub lights_auto_off_duration: Option<LightsAutoOffDuration>,
pub message: Option<String>,
pub ok: bool,
}Expand description
PublicInviteExecuteResponse
JSON schema
{
"type": "object",
"required": [
"ok"
],
"properties": {
"door_auto_close_duration": {
"type": [
"integer",
"null"
],
"format": "int64",
"minimum": 0.0
},
"lights_auto_off_duration": {
"oneOf": [
{
"type": "null"
},
{
"oneOf": [
{
"$ref": "#/components/schemas/LightsAutoOffDuration"
}
]
}
]
},
"message": {
"type": [
"string",
"null"
]
},
"ok": {
"type": "boolean"
}
}
}Fields§
§door_auto_close_duration: Option<i64>§lights_auto_off_duration: Option<LightsAutoOffDuration>§message: Option<String>§ok: boolTrait Implementations§
Source§impl Clone for PublicInviteExecuteResponse
impl Clone for PublicInviteExecuteResponse
Source§fn clone(&self) -> PublicInviteExecuteResponse
fn clone(&self) -> PublicInviteExecuteResponse
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 PublicInviteExecuteResponse
impl Debug for PublicInviteExecuteResponse
Source§impl<'de> Deserialize<'de> for PublicInviteExecuteResponse
impl<'de> Deserialize<'de> for PublicInviteExecuteResponse
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 PublicInviteExecuteResponse
impl RefUnwindSafe for PublicInviteExecuteResponse
impl Send for PublicInviteExecuteResponse
impl Sync for PublicInviteExecuteResponse
impl Unpin for PublicInviteExecuteResponse
impl UnsafeUnpin for PublicInviteExecuteResponse
impl UnwindSafe for PublicInviteExecuteResponse
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