pub struct BasicResult {
pub id: Uuid,
}
Expand description
BasicResult represents the default edgeDB query result
Fields§
§id: Uuid
Trait Implementations§
Source§impl Default for BasicResult
impl Default for BasicResult
Source§fn default() -> BasicResult
fn default() -> BasicResult
Returns the “default value” for a type. Read more
Source§impl EdgeResult for BasicResult
impl EdgeResult for BasicResult
fn returning_fields() -> Vec<&'static str>
Source§impl Queryable for BasicResult
impl Queryable for BasicResult
fn decode(decoder: &Decoder, buf: &[u8]) -> Result<Self, DecodeError>
fn check_descriptor( ctx: &DescriptorContext<'_>, type_pos: TypePos, ) -> Result<(), DescriptorMismatch>
fn decode_optional( decoder: &Decoder, buf: Option<&[u8]>, ) -> Result<Self, DecodeError>
Source§impl ToEdgeQl for BasicResult
impl ToEdgeQl for BasicResult
Source§impl ToEdgeShape for BasicResult
impl ToEdgeShape for BasicResult
Auto Trait Implementations§
impl Freeze for BasicResult
impl RefUnwindSafe for BasicResult
impl Send for BasicResult
impl Sync for BasicResult
impl Unpin for BasicResult
impl UnwindSafe for BasicResult
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