pub struct PropertyRequest {
pub selections: Option<Selections>,
pub id: PropertyId,
pub api_timestamp: Option<String>,
pub api_comment: Option<String>,
pub api_key_public: Option<String>,
}Fields§
§selections: Option<Selections>§id: PropertyId§api_timestamp: Option<String>§api_comment: Option<String>§api_key_public: Option<String>Implementations§
Source§impl PropertyRequest
impl PropertyRequest
Sourcepub fn builder() -> PropertyRequestBuilder
pub fn builder() -> PropertyRequestBuilder
Create an instance of PropertyRequest using the builder syntax
Trait Implementations§
Source§impl Clone for PropertyRequest
impl Clone for PropertyRequest
Source§fn clone(&self) -> PropertyRequest
fn clone(&self) -> PropertyRequest
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 PropertyRequest
impl Debug for PropertyRequest
Source§impl IntoRequest for PropertyRequest
impl IntoRequest for PropertyRequest
Source§type Discriminant = ()
type Discriminant = ()
If used in bulk request, the discriminant is used to distinguish the responses. For
endpoints which have no path parameters this will be
().fn into_request(self) -> (Self::Discriminant, ApiRequest)
Auto Trait Implementations§
impl Freeze for PropertyRequest
impl RefUnwindSafe for PropertyRequest
impl Send for PropertyRequest
impl Sync for PropertyRequest
impl Unpin for PropertyRequest
impl UnsafeUnpin for PropertyRequest
impl UnwindSafe for PropertyRequest
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