pub struct LinkProps<R, Q = (), S = ()>{
pub classes: Classes,
pub to: R,
pub query: Option<Q>,
pub state: Option<S>,
pub disabled: bool,
pub anchor_ref: NodeRef,
pub children: Html,
}
Expand description
Props for Link
Fields§
§classes: Classes
CSS classes to add to the anchor element (optional).
to: R
Route that will be pushed when the anchor is clicked.
query: Option<Q>
Route query data
state: Option<S>
Route state data
disabled: bool
§anchor_ref: NodeRef
NodeRef
for the <a>
element.
children: Html
Trait Implementations§
Source§impl<R, Q, S> Properties for LinkProps<R, Q, S>
impl<R, Q, S> Properties for LinkProps<R, Q, S>
impl<R, Q, S> StructuralPartialEq for LinkProps<R, Q, S>
Auto Trait Implementations§
impl<R, Q, S> Freeze for LinkProps<R, Q, S>
impl<R, Q = (), S = ()> !RefUnwindSafe for LinkProps<R, Q, S>
impl<R, Q = (), S = ()> !Send for LinkProps<R, Q, S>
impl<R, Q = (), S = ()> !Sync for LinkProps<R, Q, S>
impl<R, Q, S> Unpin for LinkProps<R, Q, S>
impl<R, Q = (), S = ()> !UnwindSafe for LinkProps<R, Q, S>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoPropValue<Option<T>> for T
impl<T> IntoPropValue<Option<T>> for T
Source§fn into_prop_value(self) -> Option<T>
fn into_prop_value(self) -> Option<T>
Convert
self
to a value of a Properties
struct.Source§impl<T> IntoPropValue<T> for T
impl<T> IntoPropValue<T> for T
Source§fn into_prop_value(self) -> T
fn into_prop_value(self) -> T
Convert
self
to a value of a Properties
struct.