diff options
| author | Philipp A | 2018-12-10 09:38:31 +0100 | 
|---|---|---|
| committer | Philipp A | 2018-12-30 17:29:00 +0100 | 
| commit | 6d995f698f580aba9e67b847432899ce841e6e7d (patch) | |
| tree | e2388a9967c230934e8d83731605afb57867e841 /src/document_tree/extra_attributes.rs | |
| parent | d019d0bff16e7277533a89399a57f290439bc2f5 (diff) | |
| download | rust-rst-6d995f698f580aba9e67b847432899ce841e6e7d.tar.bz2 | |
document conversion
Diffstat (limited to 'src/document_tree/extra_attributes.rs')
| -rw-r--r-- | src/document_tree/extra_attributes.rs | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/document_tree/extra_attributes.rs b/src/document_tree/extra_attributes.rs index 58a1e94..0708080 100644 --- a/src/document_tree/extra_attributes.rs +++ b/src/document_tree/extra_attributes.rs @@ -20,7 +20,7 @@ macro_rules! skip {  macro_rules! impl_extra {  	( $name:ident { $( $(#[$pattr:meta])* $param:ident : $type:ty ),* $(,)* } ) => (  		impl_extra!( -			#[derive(Default,Debug,Serialize)] +			#[derive(Default,Debug,PartialEq,Serialize)]  			$name { $( $(#[$pattr])* $param : $type, )* }  		);  	); @@ -49,7 +49,7 @@ impl_extra!(Target {  	anonymous: bool,  });  impl_extra!(Raw { space: FixedSpace, format: Vec<NameToken> }); -impl_extra!(#[derive(Debug,Serialize)] Image { +impl_extra!(#[derive(Debug,PartialEq,Serialize)] Image {  	uri: target::Target,  	align: Option<AlignHV>,  	alt: Option<String>, | 
