pub struct CreateLinkParams {
pub location_id: String,
pub name: String,
pub redirect_to: Option<String>,
pub query_param: Option<String>,
}Fields§
§location_id: String§name: String§redirect_to: Option<String>§query_param: Option<String>Trait Implementations§
Source§impl Clone for CreateLinkParams
impl Clone for CreateLinkParams
Source§fn clone(&self) -> CreateLinkParams
fn clone(&self) -> CreateLinkParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CreateLinkParams
impl Debug for CreateLinkParams
Source§impl Default for CreateLinkParams
impl Default for CreateLinkParams
Source§fn default() -> CreateLinkParams
fn default() -> CreateLinkParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateLinkParams
impl<'de> Deserialize<'de> for CreateLinkParams
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 CreateLinkParams
impl RefUnwindSafe for CreateLinkParams
impl Send for CreateLinkParams
impl Sync for CreateLinkParams
impl Unpin for CreateLinkParams
impl UnsafeUnpin for CreateLinkParams
impl UnwindSafe for CreateLinkParams
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