pub struct LicenseInfo {
pub license_type: Option<String>,
pub expired: Option<bool>,
pub expiration_date: Option<String>,
pub shards_limit: Option<u32>,
pub features: Option<Vec<String>>,
pub extra: Value,
}
Expand description
License information
Fields§
§license_type: Option<String>
§expired: Option<bool>
§expiration_date: Option<String>
§shards_limit: Option<u32>
§features: Option<Vec<String>>
§extra: Value
Trait Implementations§
Source§impl Clone for LicenseInfo
impl Clone for LicenseInfo
Source§fn clone(&self) -> LicenseInfo
fn clone(&self) -> LicenseInfo
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 LicenseInfo
impl Debug for LicenseInfo
Source§impl<'de> Deserialize<'de> for LicenseInfo
impl<'de> Deserialize<'de> for LicenseInfo
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 LicenseInfo
impl RefUnwindSafe for LicenseInfo
impl Send for LicenseInfo
impl Sync for LicenseInfo
impl Unpin for LicenseInfo
impl UnwindSafe for LicenseInfo
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