pub struct Path {
pub ws_base: Option<String>,
pub rest_base: Option<String>,
pub keys_service: Option<String>,
pub messages_bus: Option<String>,
}
Fields§
§ws_base: Option<String>
§rest_base: Option<String>
§keys_service: Option<String>
§messages_bus: Option<String>
Implementations§
Source§impl Path
impl Path
pub fn get_streaming_base(&self) -> Option<String>
pub fn get_rest_base(&self) -> Option<String>
pub fn get_keys_service(&self) -> Option<String>
pub fn get_messages_bus(&self) -> Option<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Path
impl<'de> Deserialize<'de> for Path
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 Path
impl RefUnwindSafe for Path
impl Send for Path
impl Sync for Path
impl Unpin for Path
impl UnwindSafe for Path
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