#[non_exhaustive]pub enum SquareAPI {
Payments(String),
Bookings(String),
Locations(String),
Catalog(String),
Customers(String),
Cards(String),
Checkout(String),
Inventory(String),
Sites(String),
Terminals(String),
Orders(String),
}Expand description
All of the endpoints of the Square API for which we have implemented some of the functionality.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Payments(String)
Bookings(String)
Locations(String)
Catalog(String)
Customers(String)
Cards(String)
Checkout(String)
Inventory(String)
Sites(String)
Terminals(String)
Orders(String)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SquareAPI
impl RefUnwindSafe for SquareAPI
impl Send for SquareAPI
impl Sync for SquareAPI
impl Unpin for SquareAPI
impl UnwindSafe for SquareAPI
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