pub struct RemoteObject {
pub url: String,
pub title: String,
pub summary: Option<String>,
pub icon: Option<Icon>,
pub status: Option<Status>,
}
Expand description
RemoteObject : The linked item.
Fields§
§url: String
The URL of the item.
title: String
The title of the item.
summary: Option<String>
The summary details of the item.
icon: Option<Icon>
Details of the icon for the item. If no icon is defined, the default link icon is used in Jira.
status: Option<Status>
The status of the item.
Implementations§
Source§impl RemoteObject
impl RemoteObject
Sourcepub fn new(url: String, title: String) -> RemoteObject
pub fn new(url: String, title: String) -> RemoteObject
The linked item.
Trait Implementations§
Source§impl Clone for RemoteObject
impl Clone for RemoteObject
Source§fn clone(&self) -> RemoteObject
fn clone(&self) -> RemoteObject
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 RemoteObject
impl Debug for RemoteObject
Source§impl Default for RemoteObject
impl Default for RemoteObject
Source§fn default() -> RemoteObject
fn default() -> RemoteObject
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RemoteObject
impl<'de> Deserialize<'de> for RemoteObject
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 PartialEq for RemoteObject
impl PartialEq for RemoteObject
Source§impl Serialize for RemoteObject
impl Serialize for RemoteObject
impl StructuralPartialEq for RemoteObject
Auto Trait Implementations§
impl Freeze for RemoteObject
impl RefUnwindSafe for RemoteObject
impl Send for RemoteObject
impl Sync for RemoteObject
impl Unpin for RemoteObject
impl UnwindSafe for RemoteObject
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