pub struct OperationsPubliclinkResponse {
pub url: String,
}Expand description
OperationsPubliclinkResponse
JSON schema
{
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"format": "uri"
}
}
}Fields§
§url: StringTrait Implementations§
Source§impl Clone for OperationsPubliclinkResponse
impl Clone for OperationsPubliclinkResponse
Source§fn clone(&self) -> OperationsPubliclinkResponse
fn clone(&self) -> OperationsPubliclinkResponse
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 OperationsPubliclinkResponse
impl Debug for OperationsPubliclinkResponse
Source§impl<'de> Deserialize<'de> for OperationsPubliclinkResponse
impl<'de> Deserialize<'de> for OperationsPubliclinkResponse
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<&OperationsPubliclinkResponse> for OperationsPubliclinkResponse
impl From<&OperationsPubliclinkResponse> for OperationsPubliclinkResponse
Source§fn from(value: &OperationsPubliclinkResponse) -> Self
fn from(value: &OperationsPubliclinkResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OperationsPubliclinkResponse
impl RefUnwindSafe for OperationsPubliclinkResponse
impl Send for OperationsPubliclinkResponse
impl Sync for OperationsPubliclinkResponse
impl Unpin for OperationsPubliclinkResponse
impl UnwindSafe for OperationsPubliclinkResponse
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