pub struct PlanFeatures {
pub chat_enabled: bool,
pub api_access: bool,
pub file_upload_limit_mb: u32,
pub concurrent_requests: u32,
pub custom_models: bool,
pub sbom_generation: bool,
pub vulnerability_scanning: bool,
pub signed_attestation: bool,
pub monthly_binaries: u32,
}Fields§
§chat_enabled: bool§api_access: bool§file_upload_limit_mb: u32§concurrent_requests: u32§custom_models: bool§sbom_generation: bool§vulnerability_scanning: bool§signed_attestation: bool§monthly_binaries: u32Trait Implementations§
Source§impl Clone for PlanFeatures
impl Clone for PlanFeatures
Source§fn clone(&self) -> PlanFeatures
fn clone(&self) -> PlanFeatures
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 PlanFeatures
impl Debug for PlanFeatures
Source§impl<'de> Deserialize<'de> for PlanFeatures
impl<'de> Deserialize<'de> for PlanFeatures
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 PlanFeatures
impl RefUnwindSafe for PlanFeatures
impl Send for PlanFeatures
impl Sync for PlanFeatures
impl Unpin for PlanFeatures
impl UnwindSafe for PlanFeatures
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