pub struct ScreenMeta {
pub derived_keywords: Option<Vec<String>>,
pub derived_stack: Option<Vec<String>>,
pub total_stargazers: usize,
pub screened: usize,
pub partial: bool,
pub partial_reason: Option<String>,
pub requests: usize,
pub noun: String,
}Expand description
Run metadata returned alongside the profiles — what was auto-derived, how much was screened, and whether the result is partial. Drives the overview header and the scale/cost story.
Fields§
§derived_keywords: Option<Vec<String>>§derived_stack: Option<Vec<String>>§total_stargazers: usize§screened: usize§partial: bool§partial_reason: Option<String>§requests: usize§noun: String“stargazers” or “users” — the noun for the header.
Trait Implementations§
Source§impl Clone for ScreenMeta
impl Clone for ScreenMeta
Source§fn clone(&self) -> ScreenMeta
fn clone(&self) -> ScreenMeta
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 ScreenMeta
impl Debug for ScreenMeta
Source§impl Default for ScreenMeta
impl Default for ScreenMeta
Source§fn default() -> ScreenMeta
fn default() -> ScreenMeta
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ScreenMeta
impl<'de> Deserialize<'de> for ScreenMeta
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 ScreenMeta
impl RefUnwindSafe for ScreenMeta
impl Send for ScreenMeta
impl Sync for ScreenMeta
impl Unpin for ScreenMeta
impl UnsafeUnpin for ScreenMeta
impl UnwindSafe for ScreenMeta
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