pub struct EuvPaginationItem {
pub text: &'static str,
pub link: &'static str,
}Expand description
One side of the euv_pagination prev/next footer.
Fields§
§text: &'static strThe display text.
link: &'static strThe link target (hash route path).
Implementations§
Source§impl EuvPaginationItem
impl EuvPaginationItem
pub fn get_text(&self) -> &'static str
pub fn get_mut_text(&mut self) -> &mut &'static str
pub fn set_text(&mut self, val: &'static str) -> &mut Self
pub fn get_link(&self) -> &'static str
pub fn get_mut_link(&mut self) -> &mut &'static str
pub fn set_link(&mut self, val: &'static str) -> &mut Self
Trait Implementations§
Source§impl Clone for EuvPaginationItem
impl Clone for EuvPaginationItem
impl Copy for EuvPaginationItem
Source§impl Debug for EuvPaginationItem
impl Debug for EuvPaginationItem
Auto Trait Implementations§
impl Freeze for EuvPaginationItem
impl RefUnwindSafe for EuvPaginationItem
impl Send for EuvPaginationItem
impl Sync for EuvPaginationItem
impl Unpin for EuvPaginationItem
impl UnsafeUnpin for EuvPaginationItem
impl UnwindSafe for EuvPaginationItem
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