pub struct EntityExternalLinkUpdateInput {
pub url: Option<String>,
pub label: Option<String>,
pub sort_order: Option<f64>,
pub resource_folder_id: Option<String>,
}Fields§
§url: Option<String>The URL of the link.
label: Option<String>The label for the link.
sort_order: Option<f64>The order of the item in the entities resources list.
resource_folder_id: Option<String>Internal The resource folder containing the link.
Trait Implementations§
Source§impl Clone for EntityExternalLinkUpdateInput
impl Clone for EntityExternalLinkUpdateInput
Source§fn clone(&self) -> EntityExternalLinkUpdateInput
fn clone(&self) -> EntityExternalLinkUpdateInput
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 EntityExternalLinkUpdateInput
impl Default for EntityExternalLinkUpdateInput
Source§fn default() -> EntityExternalLinkUpdateInput
fn default() -> EntityExternalLinkUpdateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EntityExternalLinkUpdateInput
impl<'de> Deserialize<'de> for EntityExternalLinkUpdateInput
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 EntityExternalLinkUpdateInput
impl RefUnwindSafe for EntityExternalLinkUpdateInput
impl Send for EntityExternalLinkUpdateInput
impl Sync for EntityExternalLinkUpdateInput
impl Unpin for EntityExternalLinkUpdateInput
impl UnwindSafe for EntityExternalLinkUpdateInput
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