pub struct FeatureCharterRow {
pub charter_id: String,
pub session_id: String,
pub scope_description: String,
pub max_modules: Option<i32>,
pub max_files: Option<i32>,
pub max_revisions: Option<i32>,
pub language_constraint: Option<String>,
}Expand description
Row type for feature_charters table
Fields§
§charter_id: String§session_id: String§scope_description: String§max_modules: Option<i32>§max_files: Option<i32>§max_revisions: Option<i32>§language_constraint: Option<String>Trait Implementations§
Source§impl Clone for FeatureCharterRow
impl Clone for FeatureCharterRow
Source§fn clone(&self) -> FeatureCharterRow
fn clone(&self) -> FeatureCharterRow
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 moreAuto Trait Implementations§
impl Freeze for FeatureCharterRow
impl RefUnwindSafe for FeatureCharterRow
impl Send for FeatureCharterRow
impl Sync for FeatureCharterRow
impl Unpin for FeatureCharterRow
impl UnsafeUnpin for FeatureCharterRow
impl UnwindSafe for FeatureCharterRow
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