pub struct UpdateInfoQuery {
pub from: String,
pub to: String,
pub page: Option<u32>,
pub metadata_flg: Option<bool>,
}Expand description
更新情報取得(GET /v2/hojin/updateInfo 系)の検索条件。
検索対象期間の開始日・終了日(yyyyMMdd 形式)は必須。
use gbiz_info_api::UpdateInfoQuery;
let query = UpdateInfoQuery::new("20260401", "20260430").page(2);Fields§
§from: String検索対象期間の開始日(yyyyMMdd 形式)
to: String検索対象期間の終了日(yyyyMMdd 形式)
page: Option<u32>検索結果のページ番号(下限値1)
metadata_flg: Option<bool>メタデータ取得フラグ
Implementations§
Trait Implementations§
Source§impl Clone for UpdateInfoQuery
impl Clone for UpdateInfoQuery
Source§fn clone(&self) -> UpdateInfoQuery
fn clone(&self) -> UpdateInfoQuery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UpdateInfoQuery
impl Debug for UpdateInfoQuery
Source§impl PartialEq for UpdateInfoQuery
impl PartialEq for UpdateInfoQuery
Source§impl Serialize for UpdateInfoQuery
impl Serialize for UpdateInfoQuery
impl StructuralPartialEq for UpdateInfoQuery
Auto Trait Implementations§
impl Freeze for UpdateInfoQuery
impl RefUnwindSafe for UpdateInfoQuery
impl Send for UpdateInfoQuery
impl Sync for UpdateInfoQuery
impl Unpin for UpdateInfoQuery
impl UnsafeUnpin for UpdateInfoQuery
impl UnwindSafe for UpdateInfoQuery
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