pub struct Location {
pub project_id: Option<u64>,
pub user_id: Option<u64>,
pub user_account_id: Option<String>,
pub display_name: Option<String>,
pub project_name: Option<String>,
pub project_key: Option<String>,
pub project_type_key: Option<String>,
pub name: Option<String>,
}Fields§
§project_id: Option<u64>§user_id: Option<u64>§user_account_id: Option<String>§display_name: Option<String>§project_name: Option<String>§project_key: Option<String>§project_type_key: Option<String>§name: Option<String>Trait Implementations§
source§impl<'de> Deserialize<'de> for Location
impl<'de> Deserialize<'de> for Location
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 RefUnwindSafe for Location
impl Send for Location
impl Sync for Location
impl Unpin for Location
impl UnwindSafe for Location
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