pub struct SearchPage {
pub title: String,
pub url: String,
pub headings: Vec<String>,
pub body: String,
}Fields§
§title: String§url: String§headings: Vec<String>§body: StringTrait Implementations§
Source§impl Clone for SearchPage
impl Clone for SearchPage
Source§fn clone(&self) -> SearchPage
fn clone(&self) -> SearchPage
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 SearchPage
impl Debug for SearchPage
Source§impl PartialEq for SearchPage
impl PartialEq for SearchPage
Source§fn eq(&self, other: &SearchPage) -> bool
fn eq(&self, other: &SearchPage) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SearchPage
impl StructuralPartialEq for SearchPage
Auto Trait Implementations§
impl Freeze for SearchPage
impl RefUnwindSafe for SearchPage
impl Send for SearchPage
impl Sync for SearchPage
impl Unpin for SearchPage
impl UnsafeUnpin for SearchPage
impl UnwindSafe for SearchPage
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