pub struct AttributionSnapshotEntry {
pub message_id: String,
pub surface: String,
pub file_states: Value,
pub prompt_count: Option<u32>,
pub prompt_count_at_last_commit: Option<u32>,
pub permission_prompt_count: Option<u32>,
pub permission_prompt_count_at_last_commit: Option<u32>,
pub escape_count: Option<u32>,
pub escape_count_at_last_commit: Option<u32>,
}Fields§
§message_id: String§surface: String§file_states: Value§prompt_count: Option<u32>§prompt_count_at_last_commit: Option<u32>§permission_prompt_count: Option<u32>§permission_prompt_count_at_last_commit: Option<u32>§escape_count: Option<u32>§escape_count_at_last_commit: Option<u32>Trait Implementations§
Source§impl Clone for AttributionSnapshotEntry
impl Clone for AttributionSnapshotEntry
Source§fn clone(&self) -> AttributionSnapshotEntry
fn clone(&self) -> AttributionSnapshotEntry
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 AttributionSnapshotEntry
impl Debug for AttributionSnapshotEntry
Source§impl<'de> Deserialize<'de> for AttributionSnapshotEntry
impl<'de> Deserialize<'de> for AttributionSnapshotEntry
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 AttributionSnapshotEntry
impl RefUnwindSafe for AttributionSnapshotEntry
impl Send for AttributionSnapshotEntry
impl Sync for AttributionSnapshotEntry
impl Unpin for AttributionSnapshotEntry
impl UnsafeUnpin for AttributionSnapshotEntry
impl UnwindSafe for AttributionSnapshotEntry
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