pub struct CommandsInfo {
pub deployment_id: String,
pub url: String,
}Expand description
CommandsInfo
JSON schema
{
"type": "object",
"required": [
"deploymentId",
"url"
],
"properties": {
"deploymentId": {
"type": "string"
},
"url": {
"type": "string"
}
}
}Fields§
§deployment_id: String§url: StringImplementations§
Source§impl CommandsInfo
impl CommandsInfo
pub fn builder() -> CommandsInfo
Trait Implementations§
Source§impl Clone for CommandsInfo
impl Clone for CommandsInfo
Source§fn clone(&self) -> CommandsInfo
fn clone(&self) -> CommandsInfo
Returns a duplicate of the value. Read more
1.0.0 · 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 CommandsInfo
impl Debug for CommandsInfo
Source§impl<'de> Deserialize<'de> for CommandsInfo
impl<'de> Deserialize<'de> for CommandsInfo
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<&CommandsInfo> for CommandsInfo
impl From<&CommandsInfo> for CommandsInfo
Source§fn from(value: &CommandsInfo) -> Self
fn from(value: &CommandsInfo) -> Self
Converts to this type from the input type.
Source§impl From<CommandsInfo> for CommandsInfo
impl From<CommandsInfo> for CommandsInfo
Source§fn from(value: CommandsInfo) -> Self
fn from(value: CommandsInfo) -> Self
Converts to this type from the input type.
Source§impl Serialize for CommandsInfo
impl Serialize for CommandsInfo
Source§impl TryFrom<CommandsInfo> for CommandsInfo
impl TryFrom<CommandsInfo> for CommandsInfo
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: CommandsInfo) -> Result<Self, ConversionError>
fn try_from(value: CommandsInfo) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for CommandsInfo
impl RefUnwindSafe for CommandsInfo
impl Send for CommandsInfo
impl Sync for CommandsInfo
impl Unpin for CommandsInfo
impl UnsafeUnpin for CommandsInfo
impl UnwindSafe for CommandsInfo
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