pub struct ProjectDbHandle {
pub org_id: Uuid,
pub project_id: Uuid,
pub connection_url: String,
pub auth_token: Option<String>,
}Fields§
§org_id: Uuid§project_id: Uuid§connection_url: String§auth_token: Option<String>Trait Implementations§
Source§impl Clone for ProjectDbHandle
impl Clone for ProjectDbHandle
Source§fn clone(&self) -> ProjectDbHandle
fn clone(&self) -> ProjectDbHandle
Returns a duplicate of the value. Read more
1.0.0 · 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 ProjectDbHandle
impl Debug for ProjectDbHandle
Source§impl<'de> Deserialize<'de> for ProjectDbHandle
impl<'de> Deserialize<'de> for ProjectDbHandle
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 ProjectDbHandle
impl RefUnwindSafe for ProjectDbHandle
impl Send for ProjectDbHandle
impl Sync for ProjectDbHandle
impl Unpin for ProjectDbHandle
impl UnwindSafe for ProjectDbHandle
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