pub struct CodeFeatureFlagGraph {
pub feature_flag_id: String,
pub name: String,
pub source_kind: String,
pub source_key: String,
pub score: f64,
pub usages: Vec<CodeFeatureFlagUsage>,
}Expand description
Feature flag graph grouped by stable configuration source.
Fields§
§feature_flag_id: String§name: String§source_kind: String§source_key: String§score: f64§usages: Vec<CodeFeatureFlagUsage>Trait Implementations§
Source§impl Clone for CodeFeatureFlagGraph
impl Clone for CodeFeatureFlagGraph
Source§fn clone(&self) -> CodeFeatureFlagGraph
fn clone(&self) -> CodeFeatureFlagGraph
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 CodeFeatureFlagGraph
impl Debug for CodeFeatureFlagGraph
Source§impl<'de> Deserialize<'de> for CodeFeatureFlagGraph
impl<'de> Deserialize<'de> for CodeFeatureFlagGraph
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
Source§impl PartialEq for CodeFeatureFlagGraph
impl PartialEq for CodeFeatureFlagGraph
Source§fn eq(&self, other: &CodeFeatureFlagGraph) -> bool
fn eq(&self, other: &CodeFeatureFlagGraph) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CodeFeatureFlagGraph
impl Serialize for CodeFeatureFlagGraph
impl StructuralPartialEq for CodeFeatureFlagGraph
Auto Trait Implementations§
impl Freeze for CodeFeatureFlagGraph
impl RefUnwindSafe for CodeFeatureFlagGraph
impl Send for CodeFeatureFlagGraph
impl Sync for CodeFeatureFlagGraph
impl Unpin for CodeFeatureFlagGraph
impl UnsafeUnpin for CodeFeatureFlagGraph
impl UnwindSafe for CodeFeatureFlagGraph
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