Implement PartialEq for testing (#81)
This commit is contained in:
parent
171d32720e
commit
679228873a
3 changed files with 13 additions and 3 deletions
|
@ -96,3 +96,13 @@ where
|
||||||
CollectionId(Box::new(url), PhantomData::<Kind>)
|
CollectionId(Box::new(url), PhantomData::<Kind>)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl<Kind> PartialEq for CollectionId<Kind>
|
||||||
|
where
|
||||||
|
Kind: Collection,
|
||||||
|
for<'de2> <Kind as Collection>::Kind: serde::Deserialize<'de2>,
|
||||||
|
{
|
||||||
|
fn eq(&self, other: &Self) -> bool {
|
||||||
|
self.0.eq(&other.0) && self.1 == other.1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -6,7 +6,7 @@ use url::Url;
|
||||||
/// Public key of actors which is used for HTTP signatures.
|
/// Public key of actors which is used for HTTP signatures.
|
||||||
///
|
///
|
||||||
/// This needs to be federated in the `public_key` field of all actors.
|
/// This needs to be federated in the `public_key` field of all actors.
|
||||||
#[derive(Clone, Debug, Deserialize, Serialize)]
|
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq)]
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
pub struct PublicKey {
|
pub struct PublicKey {
|
||||||
/// Id of this private key.
|
/// Id of this private key.
|
||||||
|
|
|
@ -35,7 +35,7 @@ use serde::{Deserialize, Serialize};
|
||||||
/// Media type for markdown text.
|
/// Media type for markdown text.
|
||||||
///
|
///
|
||||||
/// <https://www.iana.org/assignments/media-types/media-types.xhtml>
|
/// <https://www.iana.org/assignments/media-types/media-types.xhtml>
|
||||||
#[derive(Clone, Debug, Deserialize, Serialize)]
|
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq)]
|
||||||
pub enum MediaTypeMarkdown {
|
pub enum MediaTypeMarkdown {
|
||||||
/// `text/markdown`
|
/// `text/markdown`
|
||||||
#[serde(rename = "text/markdown")]
|
#[serde(rename = "text/markdown")]
|
||||||
|
@ -45,7 +45,7 @@ pub enum MediaTypeMarkdown {
|
||||||
/// Media type for HTML text.
|
/// Media type for HTML text.
|
||||||
///
|
///
|
||||||
/// <https://www.iana.org/assignments/media-types/media-types.xhtml>
|
/// <https://www.iana.org/assignments/media-types/media-types.xhtml>
|
||||||
#[derive(Clone, Debug, Deserialize, Serialize)]
|
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq)]
|
||||||
pub enum MediaTypeHtml {
|
pub enum MediaTypeHtml {
|
||||||
/// `text/html`
|
/// `text/html`
|
||||||
#[serde(rename = "text/html")]
|
#[serde(rename = "text/html")]
|
||||||
|
|
Loading…
Reference in a new issue