pub struct ServiceRef {
pub name: Option<String>,
pub service_id: Option<String>,
pub provider_name: Option<String>,
}Fields§
§name: Option<String>§service_id: Option<String>Catalog service id (hobby, auth, …), distinct from the local --name.
provider_name: Option<String>Provider that owns the row (Clerk, vercel, …). Required to scope reuse.
Trait Implementations§
Source§impl Debug for ServiceRef
impl Debug for ServiceRef
Source§impl<'de> Deserialize<'de> for ServiceRef
impl<'de> Deserialize<'de> for ServiceRef
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 ServiceRef
impl RefUnwindSafe for ServiceRef
impl Send for ServiceRef
impl Sync for ServiceRef
impl Unpin for ServiceRef
impl UnsafeUnpin for ServiceRef
impl UnwindSafe for ServiceRef
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