pub struct EntityExternalLinkCreateInput {
pub id: Option<String>,
pub url: Option<String>,
pub label: Option<String>,
pub initiative_id: Option<String>,
pub project_id: Option<String>,
pub team_id: Option<String>,
pub release_id: Option<String>,
pub cycle_id: Option<String>,
pub resource_folder_id: Option<String>,
pub sort_order: Option<f64>,
}Fields§
§id: Option<String>The identifier in UUID v4 format. If none is provided, the backend will generate one.
url: Option<String>The URL of the link.
label: Option<String>The label for the link.
initiative_id: Option<String>The initiative associated with the link.
project_id: Option<String>The project associated with the link.
team_id: Option<String>Internal The team associated with the link.
release_id: Option<String>Internal The release associated with the link.
cycle_id: Option<String>Internal The cycle associated with the link.
resource_folder_id: Option<String>Internal The resource folder containing the link.
sort_order: Option<f64>The order of the item in the entities resources list.
Trait Implementations§
Source§impl Clone for EntityExternalLinkCreateInput
impl Clone for EntityExternalLinkCreateInput
Source§fn clone(&self) -> EntityExternalLinkCreateInput
fn clone(&self) -> EntityExternalLinkCreateInput
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 Default for EntityExternalLinkCreateInput
impl Default for EntityExternalLinkCreateInput
Source§fn default() -> EntityExternalLinkCreateInput
fn default() -> EntityExternalLinkCreateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EntityExternalLinkCreateInput
impl<'de> Deserialize<'de> for EntityExternalLinkCreateInput
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 EntityExternalLinkCreateInput
impl RefUnwindSafe for EntityExternalLinkCreateInput
impl Send for EntityExternalLinkCreateInput
impl Sync for EntityExternalLinkCreateInput
impl Unpin for EntityExternalLinkCreateInput
impl UnwindSafe for EntityExternalLinkCreateInput
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