pub struct Bps(pub i64);Expand description
Value in basis points: integer from 0 to 10000 (0% to 100%).
JSON schema
{
"title": "Bps",
"description": "Value in basis points: integer from 0 to 10000 (0% to
100%).",
"type": "integer",
"maximum": 10000.0,
"minimum": 0.0,
"x-stainless-model": "shared.bps"
}Tuple Fields§
§0: i64Trait Implementations§
Source§impl<'de> Deserialize<'de> for Bps
impl<'de> Deserialize<'de> for Bps
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 Bps
impl RefUnwindSafe for Bps
impl Send for Bps
impl Sync for Bps
impl Unpin for Bps
impl UnsafeUnpin for Bps
impl UnwindSafe for Bps
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