Struct vrc_get_litedb::connection::ConnectionString
source · pub struct ConnectionString<'a> { /* private fields */ }
Expand description
Connection string for LiteDB
Rust representation of the LiteDB.ConnectionString
.
This struct holds the values of the connections string and will be converted to
LiteDB.ConnectionString
when passed to the C# code.
Implementations§
source§impl<'a> ConnectionString<'a>
impl<'a> ConnectionString<'a>
pub fn connect(&self) -> Result<DatabaseConnection>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for ConnectionString<'a>
impl<'a> Send for ConnectionString<'a>
impl<'a> Sync for ConnectionString<'a>
impl<'a> Unpin for ConnectionString<'a>
impl<'a> UnwindSafe for ConnectionString<'a>
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