IP
Option::Some(&str)
от ""
превратить в Option::None
, а все остальные оставить без изменений?Size: a a a
IP
Option::Some(&str)
от ""
превратить в Option::None
, а все остальные оставить без изменений?r
match s { None | Some("") => None, other => other }
IP
match s { None | Some("") => None, other => other }
.and_then(|s| if s.is_empty() { None } else { Some(s) })
r
G
$_
не распознавал как свои переменныеIP
.filter(|s| !s.is_empty())
a
.filter(|s| !s.is_empty())
IP
a
IP
pub
?IP
IB
IP
A
IB
JM
A
a
use crate::schema::records;
#[derive(Debug, Insertable)]
#[table_name = "records"]
pub struct NewRecord {
...
}
impl NewRecord {
pub async fn update_or_create(pool: &Pool, records: Vec<Self>) -> Result<usize> {
Ok(diesel::insert_into(records::table)
.values(records)
.on_conflict((records::source_record_id, records::source_id))
.do_update()
.set(records::content.eq(excluded(records::content)))
.execute_async(pool)
.await?)
}
}
AL
use crate::schema::records;
#[derive(Debug, Insertable)]
#[table_name = "records"]
pub struct NewRecord {
...
}
impl NewRecord {
pub async fn update_or_create(pool: &Pool, records: Vec<Self>) -> Result<usize> {
Ok(diesel::insert_into(records::table)
.values(records)
.on_conflict((records::source_record_id, records::source_id))
.do_update()
.set(records::content.eq(excluded(records::content)))
.execute_async(pool)
.await?)
}
}