kreuzcrawl 0.2.0 → 0.3.0.pre.rc.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 92258fdaf73e3d2a7c3d2973905388ea408deb41a035d5d5a35613924c9417da
|
|
4
|
+
data.tar.gz: a907f79b86c3511a7c572dfcf07fa342d19f1e2455c25f47a7ea75b2b543c171
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 86aa4b0c8f043de802d7d844167b351b0e140a46b2f2d04664e0710104e3c305b5e156a709aeb0303a534cb7a53818180015c6b82bebc3ce41f84f48ae0feded
|
|
7
|
+
data.tar.gz: 2d3747ecd2e4a410e93f894e1ca16a48ad881735eaed33d0989d8abfd4278cb55970cafa5c925e8ce3b0ef5b2b9d15bdb79827fe8451b1281f6ba9501f9f326b
|
|
@@ -1,6 +1,10 @@
|
|
|
1
|
-
# This file is auto-generated by alef
|
|
1
|
+
# This file is auto-generated by alef — DO NOT EDIT.
|
|
2
|
+
# alef:hash:b59e800fdddf59213911a2309f9e365fa6993399f1c12fbe68bd27b269cff2d9
|
|
3
|
+
# To regenerate: alef generate
|
|
4
|
+
# To verify freshness: alef verify --exit-code
|
|
5
|
+
# Issues & docs: https://github.com/kreuzberg-dev/alef
|
|
2
6
|
# frozen_string_literal: true
|
|
3
7
|
|
|
4
8
|
module Kreuzcrawl
|
|
5
|
-
VERSION = "0.
|
|
9
|
+
VERSION = "0.3.0-rc.2"
|
|
6
10
|
end
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
# This file is auto-generated by alef
|
|
1
|
+
# This file is auto-generated by alef — DO NOT EDIT.
|
|
2
|
+
# alef:hash:cb606b2a7daa26b35ced54ce0131bc649210d7c9396f1309bf155a45e52ef34e
|
|
3
|
+
# To regenerate: alef generate
|
|
4
|
+
# To verify freshness: alef verify --exit-code
|
|
5
|
+
# Issues & docs: https://github.com/kreuzberg-dev/alef
|
|
2
6
|
# frozen_string_literal: true
|
|
3
7
|
|
|
4
8
|
require_relative 'kreuzcrawl/version'
|
|
@@ -1,19 +1,7 @@
|
|
|
1
1
|
// This file is auto-generated by alef. DO NOT EDIT.
|
|
2
|
+
// alef:hash:38edd0f53a45bf9e74fc6f8570ccc68607d810942abb51abaedc20c4afa2ccda
|
|
2
3
|
// Re-generate with: alef generate
|
|
3
4
|
#![allow(dead_code)]
|
|
4
|
-
#![allow(
|
|
5
|
-
clippy::too_many_arguments,
|
|
6
|
-
clippy::let_unit_value,
|
|
7
|
-
clippy::needless_borrow,
|
|
8
|
-
clippy::map_identity,
|
|
9
|
-
clippy::just_underscores_and_digits,
|
|
10
|
-
clippy::unused_unit,
|
|
11
|
-
clippy::unnecessary_cast,
|
|
12
|
-
clippy::unwrap_or_default,
|
|
13
|
-
clippy::derivable_impls,
|
|
14
|
-
clippy::needless_borrows_for_generic_args,
|
|
15
|
-
clippy::unnecessary_fallible_conversions
|
|
16
|
-
)]
|
|
17
5
|
|
|
18
6
|
use magnus::{Error, IntoValueFromNative, Ruby, function, method, prelude::*, try_convert::TryConvertOwned};
|
|
19
7
|
use std::collections::HashMap;
|
|
@@ -3387,6 +3375,7 @@ fn batch_crawl_async(engine: CrawlEngineHandle, urls: Vec<String>) -> Result<Vec
|
|
|
3387
3375
|
Ok(result.into_iter().map(Into::into).collect())
|
|
3388
3376
|
}
|
|
3389
3377
|
|
|
3378
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3390
3379
|
impl From<ExtractionMeta> for kreuzcrawl::ExtractionMeta {
|
|
3391
3380
|
fn from(val: ExtractionMeta) -> Self {
|
|
3392
3381
|
Self {
|
|
@@ -3399,6 +3388,7 @@ impl From<ExtractionMeta> for kreuzcrawl::ExtractionMeta {
|
|
|
3399
3388
|
}
|
|
3400
3389
|
}
|
|
3401
3390
|
|
|
3391
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3402
3392
|
impl From<kreuzcrawl::ExtractionMeta> for ExtractionMeta {
|
|
3403
3393
|
fn from(val: kreuzcrawl::ExtractionMeta) -> Self {
|
|
3404
3394
|
Self {
|
|
@@ -3411,6 +3401,7 @@ impl From<kreuzcrawl::ExtractionMeta> for ExtractionMeta {
|
|
|
3411
3401
|
}
|
|
3412
3402
|
}
|
|
3413
3403
|
|
|
3404
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3414
3405
|
impl From<ProxyConfig> for kreuzcrawl::ProxyConfig {
|
|
3415
3406
|
fn from(val: ProxyConfig) -> Self {
|
|
3416
3407
|
Self {
|
|
@@ -3421,6 +3412,7 @@ impl From<ProxyConfig> for kreuzcrawl::ProxyConfig {
|
|
|
3421
3412
|
}
|
|
3422
3413
|
}
|
|
3423
3414
|
|
|
3415
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3424
3416
|
impl From<kreuzcrawl::ProxyConfig> for ProxyConfig {
|
|
3425
3417
|
fn from(val: kreuzcrawl::ProxyConfig) -> Self {
|
|
3426
3418
|
Self {
|
|
@@ -3431,6 +3423,7 @@ impl From<kreuzcrawl::ProxyConfig> for ProxyConfig {
|
|
|
3431
3423
|
}
|
|
3432
3424
|
}
|
|
3433
3425
|
|
|
3426
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3434
3427
|
impl From<ContentConfig> for kreuzcrawl::ContentConfig {
|
|
3435
3428
|
fn from(val: ContentConfig) -> Self {
|
|
3436
3429
|
Self {
|
|
@@ -3450,6 +3443,7 @@ impl From<ContentConfig> for kreuzcrawl::ContentConfig {
|
|
|
3450
3443
|
}
|
|
3451
3444
|
}
|
|
3452
3445
|
|
|
3446
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3453
3447
|
impl From<kreuzcrawl::ContentConfig> for ContentConfig {
|
|
3454
3448
|
fn from(val: kreuzcrawl::ContentConfig) -> Self {
|
|
3455
3449
|
Self {
|
|
@@ -3469,6 +3463,7 @@ impl From<kreuzcrawl::ContentConfig> for ContentConfig {
|
|
|
3469
3463
|
}
|
|
3470
3464
|
}
|
|
3471
3465
|
|
|
3466
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3472
3467
|
impl From<BrowserConfig> for kreuzcrawl::BrowserConfig {
|
|
3473
3468
|
fn from(val: BrowserConfig) -> Self {
|
|
3474
3469
|
Self {
|
|
@@ -3482,6 +3477,7 @@ impl From<BrowserConfig> for kreuzcrawl::BrowserConfig {
|
|
|
3482
3477
|
}
|
|
3483
3478
|
}
|
|
3484
3479
|
|
|
3480
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3485
3481
|
impl From<kreuzcrawl::BrowserConfig> for BrowserConfig {
|
|
3486
3482
|
fn from(val: kreuzcrawl::BrowserConfig) -> Self {
|
|
3487
3483
|
Self {
|
|
@@ -3496,6 +3492,7 @@ impl From<kreuzcrawl::BrowserConfig> for BrowserConfig {
|
|
|
3496
3492
|
}
|
|
3497
3493
|
|
|
3498
3494
|
#[allow(clippy::needless_update)]
|
|
3495
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3499
3496
|
impl From<CrawlConfig> for kreuzcrawl::CrawlConfig {
|
|
3500
3497
|
fn from(val: CrawlConfig) -> Self {
|
|
3501
3498
|
Self {
|
|
@@ -3539,6 +3536,7 @@ impl From<CrawlConfig> for kreuzcrawl::CrawlConfig {
|
|
|
3539
3536
|
}
|
|
3540
3537
|
}
|
|
3541
3538
|
|
|
3539
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3542
3540
|
impl From<kreuzcrawl::CrawlConfig> for CrawlConfig {
|
|
3543
3541
|
fn from(val: kreuzcrawl::CrawlConfig) -> Self {
|
|
3544
3542
|
Self {
|
|
@@ -3581,12 +3579,13 @@ impl From<kreuzcrawl::CrawlConfig> for CrawlConfig {
|
|
|
3581
3579
|
}
|
|
3582
3580
|
}
|
|
3583
3581
|
|
|
3582
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3584
3583
|
impl From<DownloadedDocument> for kreuzcrawl::DownloadedDocument {
|
|
3585
3584
|
fn from(val: DownloadedDocument) -> Self {
|
|
3586
3585
|
Self {
|
|
3587
3586
|
url: val.url,
|
|
3588
3587
|
mime_type: Default::default(),
|
|
3589
|
-
content: val.content,
|
|
3588
|
+
content: val.content.into(),
|
|
3590
3589
|
size: val.size,
|
|
3591
3590
|
filename: Default::default(),
|
|
3592
3591
|
content_hash: Default::default(),
|
|
@@ -3595,6 +3594,7 @@ impl From<DownloadedDocument> for kreuzcrawl::DownloadedDocument {
|
|
|
3595
3594
|
}
|
|
3596
3595
|
}
|
|
3597
3596
|
|
|
3597
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3598
3598
|
impl From<kreuzcrawl::DownloadedDocument> for DownloadedDocument {
|
|
3599
3599
|
fn from(val: kreuzcrawl::DownloadedDocument) -> Self {
|
|
3600
3600
|
Self {
|
|
@@ -3613,6 +3613,7 @@ impl From<kreuzcrawl::DownloadedDocument> for DownloadedDocument {
|
|
|
3613
3613
|
}
|
|
3614
3614
|
}
|
|
3615
3615
|
|
|
3616
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3616
3617
|
impl From<ScrapeResult> for kreuzcrawl::ScrapeResult {
|
|
3617
3618
|
fn from(val: ScrapeResult) -> Self {
|
|
3618
3619
|
Self {
|
|
@@ -3641,12 +3642,13 @@ impl From<ScrapeResult> for kreuzcrawl::ScrapeResult {
|
|
|
3641
3642
|
markdown: val.markdown.map(Into::into),
|
|
3642
3643
|
extracted_data: val.extracted_data.as_ref().and_then(|s| serde_json::from_str(s).ok()),
|
|
3643
3644
|
extraction_meta: val.extraction_meta.map(Into::into),
|
|
3644
|
-
screenshot: val.screenshot,
|
|
3645
|
+
screenshot: val.screenshot.map(Into::into),
|
|
3645
3646
|
downloaded_document: val.downloaded_document.map(Into::into),
|
|
3646
3647
|
}
|
|
3647
3648
|
}
|
|
3648
3649
|
}
|
|
3649
3650
|
|
|
3651
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3650
3652
|
impl From<kreuzcrawl::ScrapeResult> for ScrapeResult {
|
|
3651
3653
|
fn from(val: kreuzcrawl::ScrapeResult) -> Self {
|
|
3652
3654
|
Self {
|
|
@@ -3681,6 +3683,7 @@ impl From<kreuzcrawl::ScrapeResult> for ScrapeResult {
|
|
|
3681
3683
|
}
|
|
3682
3684
|
}
|
|
3683
3685
|
|
|
3686
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3684
3687
|
impl From<CrawlPageResult> for kreuzcrawl::CrawlPageResult {
|
|
3685
3688
|
fn from(val: CrawlPageResult) -> Self {
|
|
3686
3689
|
Self {
|
|
@@ -3708,6 +3711,7 @@ impl From<CrawlPageResult> for kreuzcrawl::CrawlPageResult {
|
|
|
3708
3711
|
}
|
|
3709
3712
|
}
|
|
3710
3713
|
|
|
3714
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3711
3715
|
impl From<kreuzcrawl::CrawlPageResult> for CrawlPageResult {
|
|
3712
3716
|
fn from(val: kreuzcrawl::CrawlPageResult) -> Self {
|
|
3713
3717
|
Self {
|
|
@@ -3735,6 +3739,7 @@ impl From<kreuzcrawl::CrawlPageResult> for CrawlPageResult {
|
|
|
3735
3739
|
}
|
|
3736
3740
|
}
|
|
3737
3741
|
|
|
3742
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3738
3743
|
impl From<CrawlResult> for kreuzcrawl::CrawlResult {
|
|
3739
3744
|
fn from(val: CrawlResult) -> Self {
|
|
3740
3745
|
Self {
|
|
@@ -3749,6 +3754,7 @@ impl From<CrawlResult> for kreuzcrawl::CrawlResult {
|
|
|
3749
3754
|
}
|
|
3750
3755
|
}
|
|
3751
3756
|
|
|
3757
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3752
3758
|
impl From<kreuzcrawl::CrawlResult> for CrawlResult {
|
|
3753
3759
|
fn from(val: kreuzcrawl::CrawlResult) -> Self {
|
|
3754
3760
|
Self {
|
|
@@ -3763,6 +3769,7 @@ impl From<kreuzcrawl::CrawlResult> for CrawlResult {
|
|
|
3763
3769
|
}
|
|
3764
3770
|
}
|
|
3765
3771
|
|
|
3772
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3766
3773
|
impl From<SitemapUrl> for kreuzcrawl::SitemapUrl {
|
|
3767
3774
|
fn from(val: SitemapUrl) -> Self {
|
|
3768
3775
|
Self {
|
|
@@ -3774,6 +3781,7 @@ impl From<SitemapUrl> for kreuzcrawl::SitemapUrl {
|
|
|
3774
3781
|
}
|
|
3775
3782
|
}
|
|
3776
3783
|
|
|
3784
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3777
3785
|
impl From<kreuzcrawl::SitemapUrl> for SitemapUrl {
|
|
3778
3786
|
fn from(val: kreuzcrawl::SitemapUrl) -> Self {
|
|
3779
3787
|
Self {
|
|
@@ -3785,6 +3793,7 @@ impl From<kreuzcrawl::SitemapUrl> for SitemapUrl {
|
|
|
3785
3793
|
}
|
|
3786
3794
|
}
|
|
3787
3795
|
|
|
3796
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3788
3797
|
impl From<MapResult> for kreuzcrawl::MapResult {
|
|
3789
3798
|
fn from(val: MapResult) -> Self {
|
|
3790
3799
|
Self {
|
|
@@ -3793,6 +3802,7 @@ impl From<MapResult> for kreuzcrawl::MapResult {
|
|
|
3793
3802
|
}
|
|
3794
3803
|
}
|
|
3795
3804
|
|
|
3805
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3796
3806
|
impl From<kreuzcrawl::MapResult> for MapResult {
|
|
3797
3807
|
fn from(val: kreuzcrawl::MapResult) -> Self {
|
|
3798
3808
|
Self {
|
|
@@ -3801,6 +3811,7 @@ impl From<kreuzcrawl::MapResult> for MapResult {
|
|
|
3801
3811
|
}
|
|
3802
3812
|
}
|
|
3803
3813
|
|
|
3814
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3804
3815
|
impl From<MarkdownResult> for kreuzcrawl::MarkdownResult {
|
|
3805
3816
|
fn from(val: MarkdownResult) -> Self {
|
|
3806
3817
|
Self {
|
|
@@ -3821,6 +3832,7 @@ impl From<MarkdownResult> for kreuzcrawl::MarkdownResult {
|
|
|
3821
3832
|
}
|
|
3822
3833
|
}
|
|
3823
3834
|
|
|
3835
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3824
3836
|
impl From<kreuzcrawl::MarkdownResult> for MarkdownResult {
|
|
3825
3837
|
fn from(val: kreuzcrawl::MarkdownResult) -> Self {
|
|
3826
3838
|
Self {
|
|
@@ -3834,6 +3846,7 @@ impl From<kreuzcrawl::MarkdownResult> for MarkdownResult {
|
|
|
3834
3846
|
}
|
|
3835
3847
|
}
|
|
3836
3848
|
|
|
3849
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3837
3850
|
impl From<LinkInfo> for kreuzcrawl::LinkInfo {
|
|
3838
3851
|
fn from(val: LinkInfo) -> Self {
|
|
3839
3852
|
Self {
|
|
@@ -3846,6 +3859,7 @@ impl From<LinkInfo> for kreuzcrawl::LinkInfo {
|
|
|
3846
3859
|
}
|
|
3847
3860
|
}
|
|
3848
3861
|
|
|
3862
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3849
3863
|
impl From<kreuzcrawl::LinkInfo> for LinkInfo {
|
|
3850
3864
|
fn from(val: kreuzcrawl::LinkInfo) -> Self {
|
|
3851
3865
|
Self {
|
|
@@ -3858,6 +3872,7 @@ impl From<kreuzcrawl::LinkInfo> for LinkInfo {
|
|
|
3858
3872
|
}
|
|
3859
3873
|
}
|
|
3860
3874
|
|
|
3875
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3861
3876
|
impl From<ImageInfo> for kreuzcrawl::ImageInfo {
|
|
3862
3877
|
fn from(val: ImageInfo) -> Self {
|
|
3863
3878
|
Self {
|
|
@@ -3870,6 +3885,7 @@ impl From<ImageInfo> for kreuzcrawl::ImageInfo {
|
|
|
3870
3885
|
}
|
|
3871
3886
|
}
|
|
3872
3887
|
|
|
3888
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3873
3889
|
impl From<kreuzcrawl::ImageInfo> for ImageInfo {
|
|
3874
3890
|
fn from(val: kreuzcrawl::ImageInfo) -> Self {
|
|
3875
3891
|
Self {
|
|
@@ -3882,6 +3898,7 @@ impl From<kreuzcrawl::ImageInfo> for ImageInfo {
|
|
|
3882
3898
|
}
|
|
3883
3899
|
}
|
|
3884
3900
|
|
|
3901
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3885
3902
|
impl From<FeedInfo> for kreuzcrawl::FeedInfo {
|
|
3886
3903
|
fn from(val: FeedInfo) -> Self {
|
|
3887
3904
|
Self {
|
|
@@ -3892,6 +3909,7 @@ impl From<FeedInfo> for kreuzcrawl::FeedInfo {
|
|
|
3892
3909
|
}
|
|
3893
3910
|
}
|
|
3894
3911
|
|
|
3912
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3895
3913
|
impl From<kreuzcrawl::FeedInfo> for FeedInfo {
|
|
3896
3914
|
fn from(val: kreuzcrawl::FeedInfo) -> Self {
|
|
3897
3915
|
Self {
|
|
@@ -3902,6 +3920,7 @@ impl From<kreuzcrawl::FeedInfo> for FeedInfo {
|
|
|
3902
3920
|
}
|
|
3903
3921
|
}
|
|
3904
3922
|
|
|
3923
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3905
3924
|
impl From<JsonLdEntry> for kreuzcrawl::JsonLdEntry {
|
|
3906
3925
|
fn from(val: JsonLdEntry) -> Self {
|
|
3907
3926
|
Self {
|
|
@@ -3912,6 +3931,7 @@ impl From<JsonLdEntry> for kreuzcrawl::JsonLdEntry {
|
|
|
3912
3931
|
}
|
|
3913
3932
|
}
|
|
3914
3933
|
|
|
3934
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3915
3935
|
impl From<kreuzcrawl::JsonLdEntry> for JsonLdEntry {
|
|
3916
3936
|
fn from(val: kreuzcrawl::JsonLdEntry) -> Self {
|
|
3917
3937
|
Self {
|
|
@@ -3922,6 +3942,7 @@ impl From<kreuzcrawl::JsonLdEntry> for JsonLdEntry {
|
|
|
3922
3942
|
}
|
|
3923
3943
|
}
|
|
3924
3944
|
|
|
3945
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3925
3946
|
impl From<CookieInfo> for kreuzcrawl::CookieInfo {
|
|
3926
3947
|
fn from(val: CookieInfo) -> Self {
|
|
3927
3948
|
Self {
|
|
@@ -3933,6 +3954,7 @@ impl From<CookieInfo> for kreuzcrawl::CookieInfo {
|
|
|
3933
3954
|
}
|
|
3934
3955
|
}
|
|
3935
3956
|
|
|
3957
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3936
3958
|
impl From<kreuzcrawl::CookieInfo> for CookieInfo {
|
|
3937
3959
|
fn from(val: kreuzcrawl::CookieInfo) -> Self {
|
|
3938
3960
|
Self {
|
|
@@ -3944,6 +3966,7 @@ impl From<kreuzcrawl::CookieInfo> for CookieInfo {
|
|
|
3944
3966
|
}
|
|
3945
3967
|
}
|
|
3946
3968
|
|
|
3969
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3947
3970
|
impl From<DownloadedAsset> for kreuzcrawl::DownloadedAsset {
|
|
3948
3971
|
fn from(val: DownloadedAsset) -> Self {
|
|
3949
3972
|
Self {
|
|
@@ -3957,6 +3980,7 @@ impl From<DownloadedAsset> for kreuzcrawl::DownloadedAsset {
|
|
|
3957
3980
|
}
|
|
3958
3981
|
}
|
|
3959
3982
|
|
|
3983
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3960
3984
|
impl From<kreuzcrawl::DownloadedAsset> for DownloadedAsset {
|
|
3961
3985
|
fn from(val: kreuzcrawl::DownloadedAsset) -> Self {
|
|
3962
3986
|
Self {
|
|
@@ -3970,6 +3994,7 @@ impl From<kreuzcrawl::DownloadedAsset> for DownloadedAsset {
|
|
|
3970
3994
|
}
|
|
3971
3995
|
}
|
|
3972
3996
|
|
|
3997
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3973
3998
|
impl From<ArticleMetadata> for kreuzcrawl::ArticleMetadata {
|
|
3974
3999
|
fn from(val: ArticleMetadata) -> Self {
|
|
3975
4000
|
Self {
|
|
@@ -3982,6 +4007,7 @@ impl From<ArticleMetadata> for kreuzcrawl::ArticleMetadata {
|
|
|
3982
4007
|
}
|
|
3983
4008
|
}
|
|
3984
4009
|
|
|
4010
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3985
4011
|
impl From<kreuzcrawl::ArticleMetadata> for ArticleMetadata {
|
|
3986
4012
|
fn from(val: kreuzcrawl::ArticleMetadata) -> Self {
|
|
3987
4013
|
Self {
|
|
@@ -3994,6 +4020,7 @@ impl From<kreuzcrawl::ArticleMetadata> for ArticleMetadata {
|
|
|
3994
4020
|
}
|
|
3995
4021
|
}
|
|
3996
4022
|
|
|
4023
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
3997
4024
|
impl From<HreflangEntry> for kreuzcrawl::HreflangEntry {
|
|
3998
4025
|
fn from(val: HreflangEntry) -> Self {
|
|
3999
4026
|
Self {
|
|
@@ -4003,6 +4030,7 @@ impl From<HreflangEntry> for kreuzcrawl::HreflangEntry {
|
|
|
4003
4030
|
}
|
|
4004
4031
|
}
|
|
4005
4032
|
|
|
4033
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
4006
4034
|
impl From<kreuzcrawl::HreflangEntry> for HreflangEntry {
|
|
4007
4035
|
fn from(val: kreuzcrawl::HreflangEntry) -> Self {
|
|
4008
4036
|
Self {
|
|
@@ -4012,6 +4040,7 @@ impl From<kreuzcrawl::HreflangEntry> for HreflangEntry {
|
|
|
4012
4040
|
}
|
|
4013
4041
|
}
|
|
4014
4042
|
|
|
4043
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
4015
4044
|
impl From<FaviconInfo> for kreuzcrawl::FaviconInfo {
|
|
4016
4045
|
fn from(val: FaviconInfo) -> Self {
|
|
4017
4046
|
Self {
|
|
@@ -4023,6 +4052,7 @@ impl From<FaviconInfo> for kreuzcrawl::FaviconInfo {
|
|
|
4023
4052
|
}
|
|
4024
4053
|
}
|
|
4025
4054
|
|
|
4055
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
4026
4056
|
impl From<kreuzcrawl::FaviconInfo> for FaviconInfo {
|
|
4027
4057
|
fn from(val: kreuzcrawl::FaviconInfo) -> Self {
|
|
4028
4058
|
Self {
|
|
@@ -4034,6 +4064,7 @@ impl From<kreuzcrawl::FaviconInfo> for FaviconInfo {
|
|
|
4034
4064
|
}
|
|
4035
4065
|
}
|
|
4036
4066
|
|
|
4067
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
4037
4068
|
impl From<HeadingInfo> for kreuzcrawl::HeadingInfo {
|
|
4038
4069
|
fn from(val: HeadingInfo) -> Self {
|
|
4039
4070
|
Self {
|
|
@@ -4043,6 +4074,7 @@ impl From<HeadingInfo> for kreuzcrawl::HeadingInfo {
|
|
|
4043
4074
|
}
|
|
4044
4075
|
}
|
|
4045
4076
|
|
|
4077
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
4046
4078
|
impl From<kreuzcrawl::HeadingInfo> for HeadingInfo {
|
|
4047
4079
|
fn from(val: kreuzcrawl::HeadingInfo) -> Self {
|
|
4048
4080
|
Self {
|
|
@@ -4052,6 +4084,7 @@ impl From<kreuzcrawl::HeadingInfo> for HeadingInfo {
|
|
|
4052
4084
|
}
|
|
4053
4085
|
}
|
|
4054
4086
|
|
|
4087
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
4055
4088
|
impl From<ResponseMeta> for kreuzcrawl::ResponseMeta {
|
|
4056
4089
|
fn from(val: ResponseMeta) -> Self {
|
|
4057
4090
|
Self {
|
|
@@ -4066,6 +4099,7 @@ impl From<ResponseMeta> for kreuzcrawl::ResponseMeta {
|
|
|
4066
4099
|
}
|
|
4067
4100
|
}
|
|
4068
4101
|
|
|
4102
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
4069
4103
|
impl From<kreuzcrawl::ResponseMeta> for ResponseMeta {
|
|
4070
4104
|
fn from(val: kreuzcrawl::ResponseMeta) -> Self {
|
|
4071
4105
|
Self {
|
|
@@ -4080,6 +4114,7 @@ impl From<kreuzcrawl::ResponseMeta> for ResponseMeta {
|
|
|
4080
4114
|
}
|
|
4081
4115
|
}
|
|
4082
4116
|
|
|
4117
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
4083
4118
|
impl From<PageMetadata> for kreuzcrawl::PageMetadata {
|
|
4084
4119
|
fn from(val: PageMetadata) -> Self {
|
|
4085
4120
|
Self {
|
|
@@ -4130,6 +4165,7 @@ impl From<PageMetadata> for kreuzcrawl::PageMetadata {
|
|
|
4130
4165
|
}
|
|
4131
4166
|
}
|
|
4132
4167
|
|
|
4168
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
4133
4169
|
impl From<kreuzcrawl::PageMetadata> for PageMetadata {
|
|
4134
4170
|
fn from(val: kreuzcrawl::PageMetadata) -> Self {
|
|
4135
4171
|
Self {
|
|
@@ -4180,6 +4216,7 @@ impl From<kreuzcrawl::PageMetadata> for PageMetadata {
|
|
|
4180
4216
|
}
|
|
4181
4217
|
}
|
|
4182
4218
|
|
|
4219
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
4183
4220
|
impl From<CitationResult> for kreuzcrawl::CitationResult {
|
|
4184
4221
|
fn from(val: CitationResult) -> Self {
|
|
4185
4222
|
Self {
|
|
@@ -4189,6 +4226,7 @@ impl From<CitationResult> for kreuzcrawl::CitationResult {
|
|
|
4189
4226
|
}
|
|
4190
4227
|
}
|
|
4191
4228
|
|
|
4229
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
4192
4230
|
impl From<kreuzcrawl::CitationResult> for CitationResult {
|
|
4193
4231
|
fn from(val: kreuzcrawl::CitationResult) -> Self {
|
|
4194
4232
|
Self {
|
|
@@ -4198,6 +4236,7 @@ impl From<kreuzcrawl::CitationResult> for CitationResult {
|
|
|
4198
4236
|
}
|
|
4199
4237
|
}
|
|
4200
4238
|
|
|
4239
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
4201
4240
|
impl From<CitationReference> for kreuzcrawl::CitationReference {
|
|
4202
4241
|
fn from(val: CitationReference) -> Self {
|
|
4203
4242
|
Self {
|
|
@@ -4208,6 +4247,7 @@ impl From<CitationReference> for kreuzcrawl::CitationReference {
|
|
|
4208
4247
|
}
|
|
4209
4248
|
}
|
|
4210
4249
|
|
|
4250
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
4211
4251
|
impl From<kreuzcrawl::CitationReference> for CitationReference {
|
|
4212
4252
|
fn from(val: kreuzcrawl::CitationReference) -> Self {
|
|
4213
4253
|
Self {
|
|
@@ -4218,6 +4258,7 @@ impl From<kreuzcrawl::CitationReference> for CitationReference {
|
|
|
4218
4258
|
}
|
|
4219
4259
|
}
|
|
4220
4260
|
|
|
4261
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
4221
4262
|
impl From<BatchScrapeResult> for kreuzcrawl::BatchScrapeResult {
|
|
4222
4263
|
fn from(val: BatchScrapeResult) -> Self {
|
|
4223
4264
|
Self {
|
|
@@ -4228,6 +4269,7 @@ impl From<BatchScrapeResult> for kreuzcrawl::BatchScrapeResult {
|
|
|
4228
4269
|
}
|
|
4229
4270
|
}
|
|
4230
4271
|
|
|
4272
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
4231
4273
|
impl From<kreuzcrawl::BatchScrapeResult> for BatchScrapeResult {
|
|
4232
4274
|
fn from(val: kreuzcrawl::BatchScrapeResult) -> Self {
|
|
4233
4275
|
Self {
|
|
@@ -4238,6 +4280,7 @@ impl From<kreuzcrawl::BatchScrapeResult> for BatchScrapeResult {
|
|
|
4238
4280
|
}
|
|
4239
4281
|
}
|
|
4240
4282
|
|
|
4283
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
4241
4284
|
impl From<BatchCrawlResult> for kreuzcrawl::BatchCrawlResult {
|
|
4242
4285
|
fn from(val: BatchCrawlResult) -> Self {
|
|
4243
4286
|
Self {
|
|
@@ -4248,6 +4291,7 @@ impl From<BatchCrawlResult> for kreuzcrawl::BatchCrawlResult {
|
|
|
4248
4291
|
}
|
|
4249
4292
|
}
|
|
4250
4293
|
|
|
4294
|
+
#[allow(clippy::redundant_closure, clippy::useless_conversion)]
|
|
4251
4295
|
impl From<kreuzcrawl::BatchCrawlResult> for BatchCrawlResult {
|
|
4252
4296
|
fn from(val: kreuzcrawl::BatchCrawlResult) -> Self {
|
|
4253
4297
|
Self {
|