pub struct CardProgram {
pub description: String,
pub display_name: String,
pub icon: Option<Icon>,
pub id: String,
pub is_default: bool,
pub is_physical: bool,
pub spending_restrictions: Option<SpendingRestrictions>,
}
Expand description
Card Program data that serves as a template for creating new cards.
Fields§
§description: String
Card Program data that serves as a template for creating new cards.
display_name: String
Card Program data that serves as a template for creating new cards.
icon: Option<Icon>
Card Program data that serves as a template for creating new cards.
id: String
Card Program data that serves as a template for creating new cards.
is_default: bool
Card Program data that serves as a template for creating new cards.
is_physical: bool
Card Program data that serves as a template for creating new cards.
spending_restrictions: Option<SpendingRestrictions>
Card Program data that serves as a template for creating new cards.
Trait Implementations§
Source§impl Clone for CardProgram
impl Clone for CardProgram
Source§fn clone(&self) -> CardProgram
fn clone(&self) -> CardProgram
Returns a copy 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 CardProgram
impl Debug for CardProgram
Source§impl<'de> Deserialize<'de> for CardProgram
impl<'de> Deserialize<'de> for CardProgram
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
Source§impl JsonSchema for CardProgram
impl JsonSchema for CardProgram
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreSource§impl PartialEq for CardProgram
impl PartialEq for CardProgram
Source§impl Serialize for CardProgram
impl Serialize for CardProgram
impl StructuralPartialEq for CardProgram
Auto Trait Implementations§
impl Freeze for CardProgram
impl RefUnwindSafe for CardProgram
impl Send for CardProgram
impl Sync for CardProgram
impl Unpin for CardProgram
impl UnwindSafe for CardProgram
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