pub struct ReflectPgForeignServer {
pub srvname: String,
pub srvowner: String,
pub srvfdw: String,
pub srvtype: Option<String>,
pub srvversion: Option<String>,
pub srvacl: Option<Vec<ForeignserverAclitem>>,
pub srvoptions: Option<Vec<String>>,
pub description: Option<String>,
pub initprivs: Option<Vec<ForeignserverAclitem>>,
pub initprivs_type: Option<i8>,
}Fields§
§srvname: String§srvowner: String§srvfdw: String§srvtype: Option<String>§srvversion: Option<String>§srvacl: Option<Vec<ForeignserverAclitem>>§srvoptions: Option<Vec<String>>§description: Option<String>§initprivs: Option<Vec<ForeignserverAclitem>>§initprivs_type: Option<i8>Trait Implementations§
Source§impl Clone for ReflectPgForeignServer
impl Clone for ReflectPgForeignServer
Source§fn clone(&self) -> ReflectPgForeignServer
fn clone(&self) -> ReflectPgForeignServer
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 ReflectPgForeignServer
impl Debug for ReflectPgForeignServer
Source§impl<'a> From<ReflectPgForeignServerBorrowed<'a>> for ReflectPgForeignServer
impl<'a> From<ReflectPgForeignServerBorrowed<'a>> for ReflectPgForeignServer
Source§fn from(_: ReflectPgForeignServerBorrowed<'a>) -> Self
fn from(_: ReflectPgForeignServerBorrowed<'a>) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ReflectPgForeignServer
impl PartialEq for ReflectPgForeignServer
impl StructuralPartialEq for ReflectPgForeignServer
Auto Trait Implementations§
impl Freeze for ReflectPgForeignServer
impl RefUnwindSafe for ReflectPgForeignServer
impl Send for ReflectPgForeignServer
impl Sync for ReflectPgForeignServer
impl Unpin for ReflectPgForeignServer
impl UnsafeUnpin for ReflectPgForeignServer
impl UnwindSafe for ReflectPgForeignServer
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