pub struct MetaAutoReload {
pub delay: Option<Duration>,
pub actuate: Option<XLinkActuate>,
pub href: Option<String>,
pub show: Option<XLinkShow>,
pub link_type: Option<XLinkType>,
}Expand description
Specifies whether a document is reloaded or replaced by another document after a specified period of time has elapsed.
Fields§
§delay: Option<Duration>The meta:delay attribute specifies a reload delay.
actuate: Option<XLinkActuate>See XLink
href: Option<String>See XLink
show: Option<XLinkShow>See XLink
link_type: Option<XLinkType>See XLink
Implementations§
Trait Implementations§
Source§impl Clone for MetaAutoReload
impl Clone for MetaAutoReload
Source§fn clone(&self) -> MetaAutoReload
fn clone(&self) -> MetaAutoReload
Returns a duplicate of the value. Read more
1.0.0 · 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 MetaAutoReload
impl Debug for MetaAutoReload
Source§impl Default for MetaAutoReload
impl Default for MetaAutoReload
Source§fn default() -> MetaAutoReload
fn default() -> MetaAutoReload
Returns the “default value” for a type. Read more
Source§impl GetSize for MetaAutoReload
impl GetSize for MetaAutoReload
Source§fn get_heap_size(&self) -> usize
fn get_heap_size(&self) -> usize
Determines how many bytes this object occupies inside the heap. Read more
Source§fn get_stack_size() -> usize
fn get_stack_size() -> usize
Determines how may bytes this object occupies inside the stack. Read more
Source§fn get_heap_size_with_tracker<T>(&self, tracker: T) -> (usize, T)where
T: GetSizeTracker,
fn get_heap_size_with_tracker<T>(&self, tracker: T) -> (usize, T)where
T: GetSizeTracker,
Determines how many bytes this object occupies inside the heap while using a
tracker. Read moreSource§fn get_size_with_tracker<T>(&self, tracker: T) -> (usize, T)where
T: GetSizeTracker,
fn get_size_with_tracker<T>(&self, tracker: T) -> (usize, T)where
T: GetSizeTracker,
Determines the total size of the object while using a
tracker. Read moreAuto Trait Implementations§
impl Freeze for MetaAutoReload
impl RefUnwindSafe for MetaAutoReload
impl Send for MetaAutoReload
impl Sync for MetaAutoReload
impl Unpin for MetaAutoReload
impl UnwindSafe for MetaAutoReload
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