pub struct PackMetadata {
pub project_id: String,
pub session_id: String,
pub git_branch: String,
pub turn_count: usize,
pub budget_chars: usize,
}Fields§
§project_id: String§session_id: String§git_branch: String§turn_count: usize§budget_chars: usizeTrait Implementations§
Source§impl Clone for PackMetadata
impl Clone for PackMetadata
Source§fn clone(&self) -> PackMetadata
fn clone(&self) -> PackMetadata
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 PackMetadata
impl Debug for PackMetadata
Source§impl<'de> Deserialize<'de> for PackMetadata
impl<'de> Deserialize<'de> for PackMetadata
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 PackMetadata
impl RefUnwindSafe for PackMetadata
impl Send for PackMetadata
impl Sync for PackMetadata
impl Unpin for PackMetadata
impl UnsafeUnpin for PackMetadata
impl UnwindSafe for PackMetadata
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