pub struct EdgedbJson<T: DeserializeOwned + Serialize>(pub T);Expand description
Wrapper around your serializable types to pass them as JSON query arguments
Tuple Fields§
§0: TTrait Implementations§
Source§impl<T: DeserializeOwned + Serialize> EdgedbPrim for EdgedbJson<T>
impl<T: DeserializeOwned + Serialize> EdgedbPrim for EdgedbJson<T>
Auto Trait Implementations§
impl<T> Freeze for EdgedbJson<T>where
T: Freeze,
impl<T> RefUnwindSafe for EdgedbJson<T>where
T: RefUnwindSafe,
impl<T> Send for EdgedbJson<T>where
T: Send,
impl<T> Sync for EdgedbJson<T>where
T: Sync,
impl<T> Unpin for EdgedbJson<T>where
T: Unpin,
impl<T> UnwindSafe for EdgedbJson<T>where
T: UnwindSafe,
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
Source§impl<T> EdgedbComposableSelector for Twhere
T: EdgedbPrim,
impl<T> EdgedbComposableSelector for Twhere
T: EdgedbPrim,
const RESULT_TYPE: ComposableQueryResultKind = const RESULT_TYPE: ComposableQueryResultKind = ComposableQueryResultKind::Field;
Source§fn format_selector(fmt: &mut impl Write) -> Result<(), Error>
fn format_selector(fmt: &mut impl Write) -> Result<(), Error>
should’t add
{ and } around the selectorfn format_subquery(fmt: &mut impl Write) -> Result<(), Error>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more