pub struct EasyIndexPage<'a> {
pub form_description: &'a str,
pub form_title: &'a str,
pub peak_sustainable_traffic: Option<usize>,
pub avg_traffic: Option<usize>,
pub broke_my_site_traffic: Option<usize>,
}Fields
form_description: &'a strform_title: &'a strpeak_sustainable_traffic: Option<usize>avg_traffic: Option<usize>broke_my_site_traffic: Option<usize>Trait Implementations
sourceimpl<'a> Clone for EasyIndexPage<'a>
impl<'a> Clone for EasyIndexPage<'a>
sourcefn clone(&self) -> EasyIndexPage<'a>
fn clone(&self) -> EasyIndexPage<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl<'a> Default for EasyIndexPage<'a>
impl<'a> Default for EasyIndexPage<'a>
sourceimpl<'a> TemplateOnce for EasyIndexPage<'a>
impl<'a> TemplateOnce for EasyIndexPage<'a>
sourcefn render_once(self) -> RenderResult
fn render_once(self) -> RenderResult
Render the template and return the rendering result as
RenderResult Read moresourcefn render_once_to(self, __sf_buf: &mut Buffer) -> Result<(), RenderError>
fn render_once_to(self, __sf_buf: &mut Buffer) -> Result<(), RenderError>
Render the template and append the result to
buf. Read moreimpl<'a> Sealed for EasyIndexPage<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for EasyIndexPage<'a>
impl<'a> Send for EasyIndexPage<'a>
impl<'a> Sync for EasyIndexPage<'a>
impl<'a> Unpin for EasyIndexPage<'a>
impl<'a> UnwindSafe for EasyIndexPage<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more