pub struct BoxOfficeInfo {
pub phone_number_detail: Option<String>,
pub open_hours_detail: Option<String>,
pub accepted_payment_detail: Option<String>,
pub will_call_detail: Option<String>,
}Fields§
§phone_number_detail: Option<String>§open_hours_detail: Option<String>§accepted_payment_detail: Option<String>§will_call_detail: Option<String>Trait Implementations§
Source§impl Clone for BoxOfficeInfo
impl Clone for BoxOfficeInfo
Source§fn clone(&self) -> BoxOfficeInfo
fn clone(&self) -> BoxOfficeInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BoxOfficeInfo
impl Debug for BoxOfficeInfo
Source§impl<'de> Deserialize<'de> for BoxOfficeInfo
impl<'de> Deserialize<'de> for BoxOfficeInfo
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 PartialEq for BoxOfficeInfo
impl PartialEq for BoxOfficeInfo
Source§fn eq(&self, other: &BoxOfficeInfo) -> bool
fn eq(&self, other: &BoxOfficeInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BoxOfficeInfo
impl Serialize for BoxOfficeInfo
impl StructuralPartialEq for BoxOfficeInfo
Auto Trait Implementations§
impl Freeze for BoxOfficeInfo
impl RefUnwindSafe for BoxOfficeInfo
impl Send for BoxOfficeInfo
impl Sync for BoxOfficeInfo
impl Unpin for BoxOfficeInfo
impl UnsafeUnpin for BoxOfficeInfo
impl UnwindSafe for BoxOfficeInfo
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