pub struct AltAttributeResult {
pub total_images: usize,
pub images_with_alt: usize,
pub missing_alt: usize,
pub alt_coverage: String,
}Available on crate feature
seo-analysis only.Fields§
§total_images: usize§images_with_alt: usize§missing_alt: usize§alt_coverage: StringTrait Implementations§
Source§impl Clone for AltAttributeResult
impl Clone for AltAttributeResult
Source§fn clone(&self) -> AltAttributeResult
fn clone(&self) -> AltAttributeResult
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 AltAttributeResult
impl Debug for AltAttributeResult
Source§impl<'de> Deserialize<'de> for AltAttributeResult
impl<'de> Deserialize<'de> for AltAttributeResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AltAttributeResult
impl RefUnwindSafe for AltAttributeResult
impl Send for AltAttributeResult
impl Sync for AltAttributeResult
impl Unpin for AltAttributeResult
impl UnsafeUnpin for AltAttributeResult
impl UnwindSafe for AltAttributeResult
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